1. 程式人生 > 其它 >vs code 對終端快捷鍵的使用整理

vs code 對終端快捷鍵的使用整理

技術標籤:vscode

微軟的vscode,作為時下最流行的幾款編輯器之一。剛出來的時候我就開始體驗了。其實這幾年用過挺多的編輯器,影響比較深的就只有前端利器webstorm還有小清新atom,至於為什麼轉投到vscode就仁者見仁智者見智了,就不多說了。
這裡主要介紹下我自己的關於vscode自帶的終端的快捷鍵設定,預設的終端切換實在是太麻煩啦··

  1. 可以通過cmd+shift+p,搜尋keyboard看下快捷鍵設定

  2. 在設定裡點選keybindings.json開啟配置json

  3. 在開啟的配置檔案中裡搜尋terminal。可以看到關於終端切換的沒有匹配的快捷鍵,放在這裡也是要讓我們自己擴充套件的意思。

  4. 最後在keybinding.json中把下面的程式碼複製過去覆蓋預設值,當然,繫結的快捷鍵你們可以根據自己習慣調整。

// 將鍵繫結放入此檔案中以覆蓋預設值
[
    {
        "key": "ctrl+tab",
        "command": "workbench.action.terminal.focusNext", // 切換到下一個終端 
        "when": "terminalFocus"
    },
    {
        "key": "ctrl+w",
        "command": "workbench.action.terminal.kill", // 關閉當前終端
        "when": "terminalFocus"
    },
    {
        "key": "ctrl+t",
        "command": "workbench.action.terminal.new", // 開啟新的終端
        "when": "terminalFocus"
    },
    {
        "key": "ctrl+1",
        "command": "workbench.action.terminal.focusAtIndex1", // 開啟終端1
        "when": "terminalFocus"
    },
    {
        "key": "ctrl+2",
        "command": "workbench.action.terminal.focusAtIndex2",
        "when": "terminalFocus"
    },
    {
        "key": "ctrl+3",
        "command": "workbench.action.terminal.focusAtIndex3",
        "when": "terminalFocus"
    },
    {
        "key": "ctrl+4",
        "command": "workbench.action.terminal.focusAtIndex4",
        "when": "terminalFocus"
    }
]