mirror of https://github.com/fredrikekre/.dotfiles
1 changed files with 23 additions and 0 deletions
@ -0,0 +1,23 @@ |
|||||||
|
[ |
||||||
|
{ "keys": ["ctrl+r"], "command": "toggle_comment", "args": { "block": false } }, |
||||||
|
{ "keys": ["up"], "command": "move", "args": {"by": "lines", "forward": false} }, |
||||||
|
{ "keys": ["ctrl+i"], "command": "move", "args": {"by": "lines", "forward": false} }, |
||||||
|
{ "keys": ["down"], "command": "move", "args": {"by": "lines", "forward": true} }, |
||||||
|
{ "keys": ["ctrl+k"], "command": "move", "args": {"by": "lines", "forward": true} }, |
||||||
|
{ "keys": ["left"], "command": "move", "args": {"by": "characters", "forward": false} }, |
||||||
|
{ "keys": ["ctrl+j"], "command": "move", "args": {"by": "characters", "forward": false} }, |
||||||
|
{ "keys": ["right"], "command": "move", "args": {"by": "characters", "forward": true} }, |
||||||
|
{ "keys": ["ctrl+l"], "command": "move", "args": {"by": "characters", "forward": true} }, |
||||||
|
{ "keys": ["shift+left"], "command": "move", "args": {"by": "characters", "forward": false, "extend": true} }, |
||||||
|
{ "keys": ["ctrl+shift+j"], "command": "move", "args": {"by": "characters", "forward": false, "extend": true} }, |
||||||
|
{ "keys": ["shift+right"], "command": "move", "args": {"by": "characters", "forward": true, "extend": true} }, |
||||||
|
{ "keys": ["ctrl+shift+l"], "command": "move", "args": {"by": "characters", "forward": true, "extend": true} }, |
||||||
|
{ "keys": ["shift+up"], "command": "move", "args": {"by": "lines", "forward": false, "extend": true} }, |
||||||
|
{ "keys": ["ctrl+shift+i"], "command": "move", "args": {"by": "lines", "forward": false, "extend": true} }, |
||||||
|
{ "keys": ["shift+down"], "command": "move", "args": {"by": "lines", "forward": true, "extend": true} }, |
||||||
|
{ "keys": ["ctrl+shift+k"], "command": "move", "args": {"by": "lines", "forward": true, "extend": true} }, |
||||||
|
{ "keys": ["ctrl+shift+up"], "command": "swap_line_up" }, |
||||||
|
{ "keys": ["ctrl+shift+u"], "command": "swap_line_up" }, |
||||||
|
{ "keys": ["ctrl+shift+down"], "command": "swap_line_down" }, |
||||||
|
{ "keys": ["ctrl+shift+h"], "command": "swap_line_down" }, |
||||||
|
] |
||||||
Loading…
Reference in new issue