- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- ソース を表示
- Windows-アプリケーション/VSCode/Vimプラグイン使用時に手動でタブを入力する へ行く。
- 1 (2017-10-30 (月) 06:42:08)
Vimプラグイン使用時に手動でタブを入力する
- VSCodeのメニューより、 File > Preferences > Keyboard Shortcuts を開く。
- "高度な編集をを行うには..."の"keybindings.json"をクリックする。
- 右ペインの中で、以下のように記述を加える。
{ "key": "ctrl+v tab", "command": "type", "args": { "text": "\t" }, "when": "editorTextFocus" }
参考
https://stackoverflow.com/questions/45566785/vscode-insert-tab-character-manually