4
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Mac上のVisual Studio CodeにおいてCtrl+kでカーソル位置から行末までカットする

Posted at

Mac上のVisual Studio CodeにおいてCtrl+kでカーソル位置から行末までカットしてCtrl+yでペーストする.

EmacsやzshなどEmacsキーバインドが使える環境ではCtrl+kでカーソル位置から行末までカットし,Ctrl+yでペースト(ヤンク)できることが多いです.しかし,Visual Studio CodeではCtrl+kで削除はできてもペーストはできません.いろいろ調べたところ,MacrosというExtentionを使うことで実現できそうです.手順は次のとおりです.

  1. Visual Studio Codeを立ち上げMacrosというExtentionをインストールする.

  2. settings.jsonに次のコードを記入します.

     "macros": {
         "cutLines": [
             "cursorEndSelect",
             "editor.action.clipboardCutAction"
         ]
     },
    

このコードはカーソル位置から行末まで選択しカットするマクロになります.

  1. keybindings.jsonに次のコードを記入します.

     { "key": "ctrl+y", "command":"execPaste", "when":"editorTextFocus"},
     {
         "key": "ctrl+k",
         "command": "macros.cutLines",
         "when": "!editorHasSelection"
     },
    

Ctrl+kで2で作成したマクロが呼ばれることで,カーソル位置から行末まで削除しクリップボード保存されます.Ctrl+yでペーストします.

4
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?