AtomからVSCodeに乗り換え実験中

emacsvimsublime text、atom等々色々使ってきたが、最近はatomに落ち着いていた。

しかしながら、githubmicrosoftの一員になって久しく、今後はatomの開発リソースがvscodeに集約されていくのかなといった感じもあり、vscodeを使ってみる。

vscodeに追加できるAtom Keymapという拡張機能を使うと、かなりスムーズに移行できる。

あと、shift + ctrl + e等での行選択ができなかったので、これらも追加。

色々拡張機能とかおもしろそうなのあったら試していこうかな。

お好みキーバインディング

[
    {
        "key": "shift+ctrl+e",
        "command": "cursorEndSelect",
        "when": "textInputFocus"
    },
    {
        "key": "shift+ctrl+n",
        "command": "cursorDownSelect",
        "when": "textInputFocus"
    },
    {
        "key": "shift+ctrl+p",
        "command": "cursorUpSelect",
        "when": "textInputFocus"
    },
    {
        "key": "shift+ctrl+a",
        "command": "cursorHomeSelect",
        "when": "textInputFocus"
    },
    {
        "key": "shift+ctrl+b",
        "command": "cursorLeftSelect",
        "when": "textInputFocus"
    },
    {
        "key": "shift+ctrl+f",
        "command": "cursorRightSelect",
        "when": "textInputFocus"
    }
]