feat(edit): stop forcing VISUAL to the terminal editor

VISUAL was hardwired to $EDITOR (nvim), so 'edit --visual' would launch a
terminal editor detached with no tty. Comment it out so --visual falls
through to the GUI fallback chain, and let users set a real GUI editor via
local.fish. Update the editor-variable docs to match.
This commit is contained in:
2026-06-19 01:56:58 -04:00
parent 8dfbc2a9be
commit 034ebade0d
2 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -108,7 +108,7 @@ if type -q nvim
else
set -gx EDITOR (command -s vi)
end
set -gx VISUAL $EDITOR
# set -gx VISUAL $EDITOR # <- Use local.fish to set your preferred GUI editor.
set -gx SUDO_EDITOR $EDITOR
# ──────────────────────────── GPG variables ─────────────────────────────