Hi,
is it possible to redefine control-x to work as in vscode, i.e., if selection exists cut it, otherwise cut the current line?
redefine control-x to cut selection or line
-
main Alexey
- Posts: 2990
- Joined: 25.08.2021 18:15
Re: redefine control-x to cut selection or line
you can set (in user.json) option
"cut_line_if_no_sel":true,
it will be like in VSCode?
remember that user.json needs { } brackets on edges of text.
"cut_line_if_no_sel":true,
it will be like in VSCode?
remember that user.json needs { } brackets on edges of text.
Re: redefine control-x to cut selection or line
Thanks! It confirm that it works for me.