mirror of https://github.com/fredrikekre/.dotfiles
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
2.2 KiB
32 lines
2.2 KiB
[ |
|
{ "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" }, |
|
{ |
|
"keys": ["j", "k"], |
|
"command": "exit_insert_mode", |
|
"context": |
|
[ |
|
{ "key": "setting.command_mode", "operand": false }, |
|
{ "key": "setting.is_widget", "operand": false } |
|
] |
|
} |
|
]
|
|
|