ターミナルを使っているときに、Ctrl-k/e/etc. を VSCode に横取りされないようにする

設定画面で、

あるいは、setting.jsonに、

   "terminal.integrated.allowChords": false,
   "terminal.integrated.sendKeybindingsToShell": true

Windows(ローカル)のターミナルのデフォルトを Cygwin にする

setting.json に追記

"terminal.integrated.profiles.windows": {
        "Cygwin":{
            "path": "C:\\cygwin64\\bin\\bash.exe",
            "overrideName": true,
            "color": "terminal.ansiBlue",
            "args": [
                "--login",
            ]
        }
    },
    "terminal.integrated.defaultProfile.windows": "Cygwin",



トップ   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS