How to find command by pressing keybinding in VSCode

前端 未结 2 984
囚心锁ツ
囚心锁ツ 2021-02-19 03:29

I\'m looking for a way for VS Code to tell me the command name for a keybinding.

In Emacs, this functionality is available under describe-key (C-h k

2条回答
  •  不知归路
    2021-02-19 04:16

    You can find the command associated with a key binding by typing the keybinding into the Keyboard Shortcuts search box:

    Unfortunately, per the source code, the vim extension doesn't use this mechanism to bind the o key.

    Fortunately, it does let you rebind the keys in settings. First, open settings (F1 Preferences: Open Settings), then add (to bind i, for example):

    "vim.normalModeKeyBindingsNonRecursive": [
        "before": ["i"],
        "after": ["o"]
    ],
    

    If you have the new settings UI, you might need to search for vim.normalModeKeyBindingsNonRecursive first, and then click Edit in settings.json.

提交回复
热议问题