mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-14 14:03:58 +00:00
fix: edit_command_buffer with micro without parsecursor
micro only parses the [FILE]:LINE:COL syntax if the parsecursor option is enabed in the meanwhile, the +LINE:COL syntax is unambiguous and always valid
This commit is contained in:
parent
1bba97984b
commit
8c7ba5efea
1 changed files with 1 additions and 1 deletions
|
@ -56,7 +56,7 @@ function edit_command_buffer --description 'Edit the command buffer in an extern
|
|||
case subl
|
||||
set -a editor $f:$line:$col --wait
|
||||
case micro
|
||||
set -a editor $f:$line:$col
|
||||
set -a editor $f +$line:$col
|
||||
case '*'
|
||||
set -a editor $f
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue