簡體   English   中英

在當前編輯器組中顯示打開文件的任何快捷方式或命令 - VSCode

[英]Any shortcut or command to show opened files in current editor group - VSCode

我可以使用命令“ show editors in first group ”,在第二組“ show editors in second group ”中show editors in second group show editors in first group打開的文件(通過拆分編輯器創建),我還可以看到所有打開的文件,包括所有組“ show all editors ” .

Bu,如何查看僅在當前關注的組中打開的文件?

VS Code 現在添加了這個。 轉到文件->首選項->鍵盤快捷鍵。 2. 向下滾動將已分配到未分配鍵的鍵。 它在“顯示活動組中的編輯器”下 3. 由於它沒有分配,因此單擊“+”符號給它一個分配。

現有的答案https://stackoverflow.com/a/53537818/7860292是正確的。

而且在FilePicker中直接輸入edt active也是可以的~


像下面這樣的快捷方式配置很容易in active groupin all groups切換:

    {
        "key": "ctrl+oem_period",
        "command": "workbench.action.quickOpen"
    },
    {
        "key": "ctrl+oem_period",
        "command": "workbench.action.showEditorsInActiveGroup",
        "when": "inFilesPicker && inQuickOpen",
    },

但是,我show editors in first group沒有發現像問題中所說的那樣的show editors in first group ,那些被棄用了嗎? ...

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM