Advertisement
Guest User

Untitled

a guest
Oct 18th, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 4.82 KB | None | 0 0
  1. // Place your key bindings in this file to overwrite the defaults
  2. [
  3.     {
  4.         "key": "ctrl+shift+w",
  5.         "command": "workbench.action.closeActiveEditor"
  6.     },
  7.  
  8.     {
  9.         "key": "ctrl+alt+w",
  10.         "command": "toggleFindWholeWord",
  11.         "when": "editorFocus"
  12.     },
  13.  
  14.     {
  15.         "key": "alt+w",
  16.         "command": "deleteLeft",
  17.         "when": "editorTextFocus && !editorReadonly"
  18.     },
  19.  
  20.     {
  21.         "key": "ctrl+w",
  22.         "command": "deleteWordLeft",
  23.         "when": "editorTextFocus && !editorReadonly"
  24.     },
  25.  
  26.     {
  27.         "key": "alt+k",
  28.         "command": "cursorUp",
  29.         "when": "editorTextFocus"
  30.     },
  31.  
  32.     {
  33.         "key": "alt+k",
  34.         "command": "showPrevParameterHint",
  35.         "when": "editorTextFocus && parameterHintsMultipleSignatures && parameterHintsVisible"
  36.     },
  37.  
  38.     {
  39.         "key": "alt+k",
  40.         "command": "selectPrevSuggestion",
  41.         "when": "editorTextFocus && suggestWidgetMultipleSuggestions && suggestWidgetVisible"
  42.     },
  43.  
  44.     {
  45.         "key": "alt+ctrl+k",
  46.         "command": "editor.action.moveLinesUpAction",
  47.         "when": "editorTextFocus && !editorReadonly"
  48.     },
  49.  
  50.     {
  51.         "key": "alt+l",
  52.         "command": "cursorDown",
  53.         "when": "editorTextFocus"
  54.     },
  55.  
  56.     {
  57.         "key": "alt+l",
  58.         "command": "showNextParameterHint",
  59.         "when": "editorTextFocus && parameterHintsMultipleSignatures && parameterHintsVisible"
  60.     },
  61.  
  62.     {
  63.         "key": "alt+l",
  64.         "command": "selectNextSuggestion",
  65.         "when": "editorTextFocus && suggestWidgetMultipleSuggestions && suggestWidgetVisible"
  66.     },
  67.  
  68.     {
  69.         "key": "ctrl+alt+l",
  70.         "command": "editor.action.moveLinesDownAction",
  71.         "when": "editorTextFocus && !editorReadonly"
  72.     },
  73.  
  74.     {
  75.         "key": "alt+down",
  76.         "command": "editor.action.moveLinesDownAction",
  77.         "when": "editorTextFocus && !editorReadonly"
  78.     },
  79.  
  80.     {
  81.         "key": "alt+j",
  82.         "command": "cursorLeft",
  83.         "when": "editorTextFocus"
  84.     },
  85.  
  86.     {
  87.         "key": "alt+;",                
  88.         "command": "cursorRight",
  89.         "when": "editorTextFocus"
  90.     },
  91.  
  92.     {
  93.         "key": "ctrl+;",
  94.         "command": "cursorWordEndRight",
  95.         "when": "editorTextFocus"
  96.     },
  97.  
  98.     {
  99.         "key": "ctrl+j",
  100.         "command": "cursorWordStartLeft",
  101.         "when": "editorTextFocus"
  102.     },
  103.  
  104.     {
  105.         "key": "alt+h",
  106.         "command": "cursorHome",
  107.         "when": "editorTextFocus"
  108.     },
  109.  
  110.     {
  111.         "key": "alt+'",
  112.         "command": "cursorEnd",
  113.         "when": "editorTextFocus"
  114.     },
  115.  
  116.     {
  117.         "key": "alt+d",
  118.         "command": "deleteRight",
  119.         "when": "editorTextFocus && !editorReadonly"
  120.     },
  121.  
  122.     {
  123.         "key": "ctrl+d",
  124.         "command": "deleteWordRight",
  125.         "when": "editorTextFocus && !editorReadonly"
  126.     },
  127.  
  128.     {
  129.         "key": "ctrl+f6",
  130.         "command": "workbench.action.togglePanel"
  131.     },
  132.  
  133.     {
  134.         "key": "alt+shift+j",
  135.         "command": "cursorLeftSelect",
  136.         "when": "editorTextFocus"
  137.     },
  138.  
  139.     {
  140.         "key": "alt+shift+;",
  141.         "command": "cursorRightSelect",
  142.         "when": "editorTextFocus"
  143.     },
  144.  
  145.     {
  146.         "key": "alt+shift+k",
  147.         "command": "cursorUpSelect",
  148.         "when": "editorTextFocus"
  149.     },
  150.  
  151.     {
  152.         "key": "alt+shift+l",
  153.         "command": "cursorDownSelect",
  154.         "when": "editorTextFocus"
  155.     },
  156.  
  157.     {
  158.         "key": "ctrl+f",
  159.         "command": "editor.action.deleteLines",
  160.         "when": "editorTextFocus && !editorReadonly"
  161.     },
  162.  
  163.     {
  164.         "key": "alt+ctrl+s",
  165.         "command": "workbench.action.files.save"
  166.     },
  167.  
  168.     {
  169.         "key": "ctrl+s",
  170.         "command": "workbench.action.terminal.focusFindWidget",
  171.         "when": "terminalFocus"
  172.     },
  173.  
  174.     {
  175.         "key": "ctrl+s",
  176.         "command": "actions.find"
  177.     },
  178.  
  179.     {
  180.         "key": "ctrl+s",
  181.         "command": "editor.action.extensioneditor.hidefind",
  182.         "when": "extensionEditorWebviewFocus"
  183.     },
  184.  
  185.     {
  186.         "key": "ctrl+s",
  187.         "command": "editor.action.extensioneditor.showfind",
  188.         "when": "extensionEditorWebviewFocus"
  189.     },
  190.  
  191.     {
  192.         "key": "ctrl+s",
  193.         "command": "editor.action.webvieweditor.showFind",
  194.         "when": "webviewEditorFocus"
  195.     },
  196.  
  197.     {
  198.         "key": "ctrl+s",
  199.         "command": "settings.action.search",
  200.         "when": "inSettingsEditor"
  201.     },
  202.  
  203.     {
  204.         "key": "ctrl+s",
  205.         "command": "keybindings.editor.searchKeybindings",
  206.         "when": "inKeybindings && keybindingFocus"
  207.     },
  208.  
  209.     {
  210.         "key": "ctrl+g",
  211.         "command": "editor.action.addSelectionToNextFindMatch",
  212.         "when": "editorFocus"
  213.     },
  214. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement