国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

VSCode快捷鍵大全

TesterHome / 3097人閱讀

最近從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 關閉窗口實例

2、基礎編輯

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 更改文件語言類型

3、導航

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焦點

4、搜索和替換

Ctrl+F , Ctrl+H , F3/SHift+F3
Alt+Enter 選中所有匹配搜索的

5、多光標,選擇,多行編輯

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 列頁選擇

6、編輯器管理

Ctrl+W, Ctrl+F4 關閉當前編輯器 , Ctrl+K Ctrl+W關閉所有
Ctrl+Shift+T 重新打開上一次關閉的編輯器
Ctrl+K F 關閉目錄
Ctrl+ 分割編輯器
Ctrl+1/2/3 轉移編輯器焦點到不同編輯組
Ctrl+K (Ctrl+)左/右 轉移編輯器焦點到左右組
Shift+F10顯示上下文菜單

7、文件管理

Ctrl+N 新建文件,Ctrl+O 打開文件
Ctrl+S , Ctrl+Shift+S , Ctrl+K S 保存,另存為,保存所有
Ctrl+K P 復制文件路徑
Ctrl+K R 在資源管理器中打開文件
Ctrl+K O 在新窗口打開文件

8、顯示

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

9、調試

F9 設置斷點
F5 開始/繼續
Shift+F5 停止
F11/Shift+F11 step into/out
F10 step over
Ctrl+K Ctrl+I show hover

10、終端集成

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

針對Window快捷鍵沖突和Eclipse習慣改造自定義的部分
// 將鍵綁定放入此文件中以覆蓋默認值
[{
        "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

相關文章

  • VSCode捷鍵大全

    vpants 評論0 收藏0
  • VSCode捷鍵大全

    最近從Sublime3切換到VScode,總結下快捷鍵。 官方地址:https://code.visualstudio.com... 簡單的配置 { files.autoSave: off, //禁用自動保存 workbench.iconTheme: vs-minimal, explorer.autoReveal: false, //禁止資源管理器在打開文件時自動顯示...

    codecook 評論0 收藏0
  • VSCode捷鍵大全

    最近從Sublime3切換到VScode,總結下快捷鍵。 官方地址:https://code.visualstudio.com... 簡單的配置 { files.autoSave: off, //禁用自動保存 workbench.iconTheme: vs-minimal, explorer.autoReveal: false, //禁止資源管理器在打開文件時自動顯示...

    objc94 評論0 收藏0
  • 平時積累的前端資源,持續更新中。。。

    本文收集學習過程中使用到的資源。 持續更新中…… 項目地址 https://github.com/abc-club/f... 目錄 vue react react-native Weex typescript Taro nodejs 常用庫 css js es6 移動端 微信公眾號 小程序 webpack GraphQL 性能與監控 高質文章 趨勢 動效 數據結構與算法 js core 代碼規范...

    acrazing 評論0 收藏0
  • 前端最實用書簽(持續更新)

    摘要:前言一直混跡社區突然發現自己收藏了不少好文但是管理起來有點混亂所以將前端主流技術做了一個書簽整理不求最多最全但求最實用。 前言 一直混跡社區,突然發現自己收藏了不少好文但是管理起來有點混亂; 所以將前端主流技術做了一個書簽整理,不求最多最全,但求最實用。 書簽源碼 書簽導入瀏覽器效果截圖showImg(https://segmentfault.com/img/bVbg41b?w=107...

    sshe 評論0 收藏0

發表評論

0條評論

TesterHome

|高級講師

TA的文章

閱讀更多
最新活動
閱讀需要支付1元查看
<