workbench.action.nextEditor  
]
 
workbench.action.previousEditor  
[
 
workbench.action.togglePanel  
Y
 
workbench.action.quickOpen  
O
 
workbench.action.navigateBack  
 
workbench.action.navigateForward  
 
workbench.view.explorer  
1
 
workbench.view.search  
2
 
workbench.view.scm  
3
 
workbench.view.debug  
4
 
workbench.view.extensions  
5
 
workbench.action.debug.start  
R
 
workbench.action.debug.restart  
R
 
workbench.action.debug.stop  
.
 
workbench.action.tasks.build  
B
 
workbench.action.tasks.test  
U
 
workbench.action.toggleSidebarVisibility  
0
 
cursorWordPartRight  
 
cursorWordPartRightSelect  
 
cursorWordPartStartLeft  
 
cursorWordPartStartLeftSelect  
 
deleteWordPartLeft  
Backspace
 
deleteWordPartRight  
Backspace
 
editor.fold  
 
editor.unfold  
 
editor.action.moveLinesUpAction  
[
 
editor.action.moveLinesDownAction  
]
 
cursorHome  
 
cursorEnd  
 
editor.action.changeAll  
E
 
acceptSelectedSuggestion  
Enter
 
editor.action.insertCursorAbove  
 
editor.action.insertCursorBelow  
 
workbench.action.gotoLine  
L

 

{
  "name": "xcode-keybindings",
  "displayName": "Xcode Keymap",
  "description": "Popular Xcode keybindings for VS Code.",
  "version": "1.9.0",
  "publisher": "stevemoser",
  "homepage": "https://github.com/stevemoser/vscode-xcode-keybindings/#readme",
  "engines": {
  "vscode": "^1.6.0"
  },
  "categories": [
  "Keymaps"
  ],
  "keywords": [
  "Keymap",
  "Keybinding",
  "Swift",
  "ObjC",
  "Apple",
  "Mac",
  "Xcode"
  ],
  "repository": {
  "type": "git",
  "url": "https://github.com/stevemoser/vscode-xcode-keybindings.git"
  },
  "bugs": {
  "url": "https://github.com/stevemoser/vscode-xcode-keybindings/issues"
  },
  "preview": true,
  "icon": "xcode-keyboard.png",
  "contributes": {
  "keybindings": [
  {
  "key": "cmd+e",
  "command": "editor.action.addSelectionToNextFindMatch"
  },
  {
  "key": "cmd+shift+j",
  "command": "workbench.files.action.showActiveFileInExplorer"
  },
  {
  "key": "cmd+ctrl+up",
  "command": "C_Cpp.SwitchHeaderSource"
  },
  {
  "key": "shift+cmd+]",
  "command": "workbench.action.nextEditor"
  },
  {
  "key": "shift+cmd+[",
  "command": "workbench.action.previousEditor"
  },
  {
  "key": "cmd+shift+y",
  "command": "workbench.action.togglePanel"
  },
  {
  "key": "cmd+shift+o",
  "command": "workbench.action.quickOpen"
  },
  {
  "key": "ctrl+cmd+left",
  "command": "workbench.action.navigateBack"
  },
  {
  "key": "ctrl+cmd+right",
  "command": "workbench.action.navigateForward"
  },
  {
  "key": "cmd+1",
  "command": "workbench.view.explorer"
  },
  {
  "key": "cmd+2",
  "command": "workbench.view.search"
  },
  {
  "key": "cmd+3",
  "command": "workbench.view.scm"
  },
  {
  "key": "cmd+4",
  "command": "workbench.view.debug"
  },
  {
  "key": "cmd+5",
  "command": "workbench.view.extensions"
  },
  {
  "key": "cmd+r",
  "command": "workbench.action.debug.start",
  "when": "!inDebugMode"
  },
  {
  "key": "cmd+r",
  "command": "workbench.action.debug.restart",
  "when": "inDebugMode"
  },
  {
  "key": "cmd+.",
  "command": "workbench.action.debug.stop",
  "when": "inDebugMode"
  },
  {
  "key": "cmd+b",
  "command": "workbench.action.tasks.build"
  },
  {
  "key": "cmd+u",
  "command": "workbench.action.tasks.test"
  },
  {
  "key": "cmd+0",
  "command": "workbench.action.toggleSidebarVisibility"
  },
  {
  "key": "ctrl+right",
  "command": "cursorWordPartRight",
  "when": "textInputFocus"
  },
  {
  "key": "shift+ctrl+right",
  "command": "cursorWordPartRightSelect",
  "when": "textInputFocus"
  },
  {
  "key": "ctrl+left",
  "command": "cursorWordPartStartLeft",
  "when": "textInputFocus"
  },
  {
  "key": "shift+ctrl+left",
  "command": "cursorWordPartStartLeftSelect",
  "when": "textInputFocus"
  },
  {
  "key": "ctrl+backspace",
  "command": "deleteWordPartLeft",
  "when": "textInputFocus && !editorReadonly"
  },
  {
  "key": "shift+ctrl+backspace",
  "command": "deleteWordPartRight",
  "when": "textInputFocus && !editorReadonly"
  },
  {
  "key": "alt+cmd+left",
  "command": "editor.fold"
  },
  {
  "key": "alt+cmd+right",
  "command": "editor.unfold"
  },
  {
  "key": "alt+cmd+[",
  "command": "editor.action.moveLinesUpAction"
  },
  {
  "key": "alt+cmd+]",
  "command": "editor.action.moveLinesDownAction"
  },
  {
  "key": "alt+up",
  "command": "cursorHome",
  "when": "textInputFocus"
  },
  {
  "key": "alt+down",
  "command": "cursorEnd",
  "when": "textInputFocus"
  },
  {
  "key": "ctrl+cmd+e",
  "command": "editor.action.changeAll",
  "when": "editorTextFocus && !editorReadonly"
  },
  {
  "key": "enter",
  "command": "acceptSelectedSuggestion",
  "when": "editorTextFocus && suggestWidgetVisible"
  },
  {
  "key": "ctrl+shift+up",
  "command": "editor.action.insertCursorAbove",
  "when": "editorTextFocus"
  },
  {
  "key": "ctrl+shift+down",
  "command": "editor.action.insertCursorBelow",
  "when": "editorTextFocus"
  },
  {
  "key": "cmd+l",
  "command": "workbench.action.gotoLine",
  "when": "textInputFocus"
  }
  ]
  },
  "scripts": {
  "postinstall": "node ./node_modules/vscode/bin/install"
  },
  "devDependencies": {
  "vscode": "^1.0.0"
  },
  "dependencies": {
  "jsonfile": "^5.0.0"
  }
  }

'{3D} 가상 세계' 카테고리의 다른 글

File System Basics  (0) 2022.05.26
Package Dependencies  (0) 2022.04.25
Security  (0) 2022.03.06
fortify  (0) 2022.03.06
댓글 욕 필터링 예제  (0) 2022.03.06

+ Recent posts