最近從Sublime3切換到VScode,總結下快捷鍵。
官方地址:https://code.visualstudio.com...
簡單的配置
{ "files.autoSave": "off", //禁用自動保存 "workbench.iconTheme": "vs-minimal", "explorer.autoReveal": false, //禁止資源管理器在打開文件時自動顯示并選擇它們,類似于禁用Eclipse的link editor "workbench.editor.enablePreviewFromQuickOpen": false, //使Ctrl+P打開的文件使用新的tab頁,而不是替換已有的 "workbench.editor.enablePreview": false //使得鼠標左鍵打開的文件使用新的tab頁,而不是替換已有的 }1、通用
Ctrl+Shif+P , F1 打開命令面板 Ctrl+P 快速打開
Ctrl+Shift+N 打開新實例窗口 Ctrl+Shift+W 關閉窗口實例
Ctrl+X 剪切 Ctrl+C 復制
Alt+下/上 移動行 shift+Alt+上/下 復制行
Ctrl+Shift+K 刪除行 ,改成Ctrl+D
Ctrl+(Shift)+Enter 插入行
Ctrl+Shift+ 跳轉到匹配的括號
Ctrl+[/] 行縮進
Ctrl+Shift+[/] 代碼折疊
Ctrl+/ 行注釋,Shift+Alt+A 塊注釋 ,改成Ctrl+shif+/
Alt+Z 是否換行(word wrap)
Ctrl+空格鍵 智能提示 ,改成Alt+/
Ctrl+Shift+Space 參數提示,Tab 自動補全
Ctrl+K Ctrl+I 顯示懸停(類似于鼠標hover懸停,一般用于觸發提示)
Shift+Alt+F 格式化文檔(改成Ctrl+Shift+F),Ctrl+K Ctrl+F 格式化選中代碼
F12 跳轉定義,Alt+F12 查看定義 分別改成F3,Alt+F3
Ctrl+K F12 在側邊打開定義
Ctrl+. 快速修復
Shift+F12 顯示引用
F2 重命名變量
Ctrl+K M 更改文件語言類型
Ctrl+T 顯示所有變量、函數名等 #
Ctrl+G 跳轉行
Ctrl+P 打開文件
Ctrl+Shift+O 跳轉到變量、函數等@
Ctrl+Shift+M 顯示終端、錯誤等程序面板
F8 跳轉到下一個錯誤或警告,改成Ctrl+,
Shift+F8 跳轉到上一個錯誤或警告, 改成ctrl+shift+,
Ctrl+Shift+Tab 切換編輯器,我改成了Ctrl+E
Alt+左/右 向前/后
Ctrl+M 切換tab焦點
Ctrl+F , Ctrl+H , F3/SHift+F3
Alt+Enter 選中所有匹配搜索的
Ctrl+I 選中當前行
Alt+Click 插入多個光標
Ctrl+Alt+上/下 插入多個光標 ,改成Ctrl++Shift+Alt+上/下
Ctrl+U 撤銷上一次光標操作
Shift+Alt+I 在選中的所有行末尾插入光標
Ctrl+Shift+L , Ctrl+F2 都可以選中文中所有和當前的選擇或單詞同名的,重構重命名時很方便
Shift+Alt+左/右 縮小、擴大選擇區塊
Shift+Alt+鼠標拖拽 , Ctrl+Shift+Alt+方向鍵 列選擇
Ctrl+Shift+Alt+PgUp/PgDown 列頁選擇
Ctrl+W, Ctrl+F4 關閉當前編輯器 , Ctrl+K Ctrl+W關閉所有
Ctrl+Shift+T 重新打開上一次關閉的編輯器
Ctrl+K F 關閉目錄
Ctrl+ 分割編輯器
Ctrl+1/2/3 轉移編輯器焦點到不同編輯組
Ctrl+K (Ctrl+)左/右 轉移編輯器焦點到左右組
Shift+F10顯示上下文菜單
Ctrl+N 新建文件,Ctrl+O 打開文件
Ctrl+S , Ctrl+Shift+S , Ctrl+K S 保存,另存為,保存所有
Ctrl+K P 復制文件路徑
Ctrl+K R 在資源管理器中打開文件
Ctrl+K O 在新窗口打開文件
F11 全屏
Shift+Alt+1 改變編輯器布局
Ctrl+ =/- 放大或縮小
Ctrl+B 開關側邊欄
Ctrl+Shift+E 焦點放到Explorer
Ctrl+Shift+F 焦點放到搜索,改成ctrl+alt+f
Ctrl+Shift+G 焦點放Git
Ctrl+Shift+D 焦點放到Debug
Ctrl+Shift+X 焦點放到擴展
Ctrl+Shift+H replace in files
F9 設置斷點
F5 開始/繼續
Shift+F5 停止
F11/Shift+F11 step into/out
F10 step over
Ctrl+K Ctrl+I show hover
Ctrl+` 顯示集成的終端
Ctrl+Shift+` 創建新的終端
Ctrl+Shift+C 復制選中
Ctrl+Shift+V 粘貼到終端
Ctrl+↑ / ↓ Scroll up/down
Shift+PgUp / PgDown Scroll page up/down
Ctrl+Home / End Scroll to top/bottom
// 將鍵綁定放入此文件中以覆蓋默認值 [{ "key": "alt+/", "command": "editor.action.triggerSuggest", "when": "editorHasCompletionItemProvider && editorTextFocus && !editorReadonly" }, { "key": "ctrl+d", "command": "editor.action.deleteLines", "when": "editorTextFocus && !editorReadonly" }, { "key": "ctrl+shift+/", "command": "editor.action.blockComment", "when": "editorTextFocus && !editorReadonly" }, { "key": "ctrl+shift+f", "command": "editor.action.formatDocument", "when": "editorHasDocumentFormattingProvider && editorTextFocus && !editorReadonly" }, { "key": "f3", "command": "editor.action.goToDeclaration", "when": "editorHasDefinitionProvider && editorTextFocus && !isInEmbeddedEditor" }, { "key": "alt+f3", "command": "editor.action.goToImplementation", "when": "editorHasImplementationProvider && editorTextFocus && !isInEmbeddedEditor" }, { "key": "ctrl+e", "command": "workbench.action.openPreviousRecentlyUsedEditorInGroup" }, { "key": "ctrl+,", "command": "editor.action.marker.next", "when": "editorFocus && !editorReadonly" }, { "key": "ctrl+shift+,", "command": "editor.action.marker.prev", "when": "editorFocus && !editorReadonly" }, { "key": "ctrl+shift+alt+up", "command": "editor.action.insertCursorAbove", "when": "editorTextFocus" }, { "key": "ctrl+shift+alt+down", "command": "editor.action.insertCursorBelow", "when": "editorTextFocus" }, { "key": "ctrl+alt+f", "command": "search.action.focusActiveEditor", "when": "searchInputBoxFocus && searchViewletVisible" } ]
文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。
轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/44403.html
最近從Sublime3切換到VScode,總結下快捷鍵。 官方地址:https://code.visualstudio.com... 簡單的配置 { files.autoSave: off, //禁用自動保存 workbench.iconTheme: vs-minimal, explorer.autoReveal: false, //禁止資源管理器在打開文件時自動顯示...
最近從Sublime3切換到VScode,總結下快捷鍵。 官方地址:https://code.visualstudio.com... 簡單的配置 { files.autoSave: off, //禁用自動保存 workbench.iconTheme: vs-minimal, explorer.autoReveal: false, //禁止資源管理器在打開文件時自動顯示...
本文收集學習過程中使用到的資源。 持續更新中…… 項目地址 https://github.com/abc-club/f... 目錄 vue react react-native Weex typescript Taro nodejs 常用庫 css js es6 移動端 微信公眾號 小程序 webpack GraphQL 性能與監控 高質文章 趨勢 動效 數據結構與算法 js core 代碼規范...
摘要:前言一直混跡社區突然發現自己收藏了不少好文但是管理起來有點混亂所以將前端主流技術做了一個書簽整理不求最多最全但求最實用。 前言 一直混跡社區,突然發現自己收藏了不少好文但是管理起來有點混亂; 所以將前端主流技術做了一個書簽整理,不求最多最全,但求最實用。 書簽源碼 書簽導入瀏覽器效果截圖showImg(https://segmentfault.com/img/bVbg41b?w=107...
閱讀 2020·2023-04-25 22:50
閱讀 2833·2021-09-29 09:35
閱讀 3390·2021-07-29 10:20
閱讀 3152·2019-08-29 13:57
閱讀 3355·2019-08-29 13:50
閱讀 3031·2019-08-26 12:10
閱讀 3529·2019-08-23 18:41
閱讀 2633·2019-08-23 18:01