0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

VS Codeで選択した範囲を同じ長さのスペースで埋める

Last updated at Posted at 2024-11-02

できること

VS Codeで選択した範囲を同じ長さのスペースで埋めるキーボードショートカットを作成します。
これ↓が
before.png
こうなります↓
after.png

結論

VS CodeでCmd + Shift + Pにより検索ボックスに移り、keyboard jsonなどと入力して、
「基本設定: キーボード ショートカットを開く (JSON)」を選択する。
keybindings.jsonなるファイルが開くはずなので、[]の内側に以下を追記する。
keyはお好みのキーの組み合わせを入れる。自分はlatexを使うときにこのショートカットを使いたいので"when": "editorLangId == latex"としているが、無しにするとどんなときでも使えるはず。

{
        "key": "cmd+shift+r",
        "command": "editor.action.insertSnippet",
        "args":{
            "snippet": "${TM_SELECTED_TEXT/./ /g}",
        },
        "when": "editorLangId == latex",
    }

選択した文字列について、どんな文字でも空白に変換するという操作になっています。

動機

latexの表において&で揃えるために、上の行をコピーして既存の文字列を同じ長さの空白に変換したいと思いネットで探しましたが、見つからなかったので作成しました。
以下のページのTransform examplesの項を参考にしました。

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?