refactor(shell-plugin): rename _FORGE_TERM_ENABLED to _FORGE_TERM#3005
Merged
tusharmath merged 1 commit intomainfrom Apr 14, 2026
Merged
refactor(shell-plugin): rename _FORGE_TERM_ENABLED to _FORGE_TERM#3005tusharmath merged 1 commit intomainfrom
tusharmath merged 1 commit intomainfrom
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Rename the internal shell-plugin variable
_FORGE_TERM_ENABLEDto_FORGE_TERMand its corresponding user-facing environment variableFORGE_TERM_ENABLEDtoFORGE_TERMfor a shorter, more consistent naming convention.Context
The variable
_FORGE_TERM_ENABLEDserved as the master switch for terminal context capture (preexec/precmd hooks). The_ENABLEDsuffix was redundant — the variable's boolean value already communicates enablement state. Dropping it aligns with the naming style of other_FORGE_TERM_*variables in the plugin (e.g.,_FORGE_TERM_MAX_COMMANDS,_FORGE_TERM_COMMANDS) and reduces visual noise in the shell config.Changes
_FORGE_TERM_ENABLED→_FORGE_TERMacross all shell plugin filesFORGE_TERM_ENABLED→FORGE_TERMinconfig.zshconfig.zsh,context.zsh, andhelpers.zshKey Implementation Details
The rename is purely mechanical — no logic, defaults, or behavior changed. The variable still defaults to
"true"and controls registration of thepreexec/precmdhooks as well as terminal command context forwarding to the forge process.Testing