Advertisement
Guest User

Untitled

a guest
Apr 30th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. // Put/Merge this in ~/.config/Code/User/keybindings.json
  2. [
  3. {"key": "ctrl+b", "command": "cursorLeft", "when": "editorTextFocus" }
  4. , {"key": "ctrl+f", "command": "cursorRight", "when": "editorTextFocus" }
  5. , {"key": "ctrl+n", "command": "cursorDown", "when": "editorTextFocus" }
  6. , {"key": "ctrl+p", "command": "cursorUp", "when": "editorTextFocus" }
  7. , {"key": "ctrl+a", "command": "cursorHome", "when": "editorTextFocus" }
  8. , {"key": "ctrl+e", "command": "cursorEnd", "when": "editorTextFocus" }
  9.  
  10. // , {"key": "ctrl+q", "command": "cursorWordLeft", "when": "editorTextFocus" }
  11. // , {"key": "ctrl+e", "command": "cursorWordRight","when": "editorTextFocus" }
  12. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement