mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-14 14:03:58 +00:00
edit_command_buffer: Use variable-as-command
This commit is contained in:
parent
3253893923
commit
3c6844d4f4
1 changed files with 2 additions and 2 deletions
|
@ -18,11 +18,11 @@ function edit_command_buffer --description 'Edit the command buffer in an extern
|
||||||
commandline -b >$f
|
commandline -b >$f
|
||||||
if set -q VISUAL
|
if set -q VISUAL
|
||||||
__fish_disable_bracketed_paste
|
__fish_disable_bracketed_paste
|
||||||
eval $VISUAL $f
|
$VISUAL $f
|
||||||
__fish_enable_bracketed_paste
|
__fish_enable_bracketed_paste
|
||||||
else if set -q EDITOR
|
else if set -q EDITOR
|
||||||
__fish_disable_bracketed_paste
|
__fish_disable_bracketed_paste
|
||||||
eval $EDITOR $f
|
$EDITOR $f
|
||||||
__fish_enable_bracketed_paste
|
__fish_enable_bracketed_paste
|
||||||
else
|
else
|
||||||
echo
|
echo
|
||||||
|
|
Loading…
Reference in a new issue