mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-05-14 22:11:16 -03: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:
committed by
Johannes Altmanninger
parent
1bba97984b
commit
8c7ba5efea
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user