vscode配置shell开发环境

文章目录

  • vscode开发shell
    • 安装shell相关插件
    • Code Runner配置
      • setting.json
      • Run In Terminal

vscode开发shell

安装shell相关插件

本地安装git使用里面的bash,可以在window本机运行

code runner 运行shell
shell man 代码提示,片段
AutoComplate shell  代码提示,片段
shell-format shell格式化

remote deployment (可选)远程开发-可以在本地连接到远程服务器,本地修改后,远程马上同步

Code Runner配置

setting.json

vscode配置shell开发环境_第1张图片

{
	...
   "code-runner.executorMap": {
        // "javascript": "node",
        "php": "D:\\BtSoft\\php\\73\\php.exe",
        // "python": "python",
        "bash" : "\"C:\\Program Files\\Git\\bin\\bash.exe\"",
        "perl": "perl",
        "ruby": "C:\\Ruby23-x64\\bin\\ruby.exe",
        "go": "go run",
        "html": "\"C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe\"",
        "java": "cd $dir && javac $fileName && java $fileNameWithoutExt",
        "c": "cd $dir && gcc $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt"
    },
    "code-runner.languageIdToFileExtensionMap": {
        "bat": ".bat",
        "powershell": ".ps1",
        "typescript": ".ts",
        "bash": ".sh",
        "/bin/bash": ".sh"
    },
    "code-runner.runInTerminal": true
      ...
  }

“/bin/bash”: “.sh” 在文件上写这个就可以执行
vscode配置shell开发环境_第2张图片

Run In Terminal

运行在终端,避免像read这些函数需要输入的,在code runner 非终端模式运行时提示 只读模式不可编辑的错误。
vscode配置shell开发环境_第3张图片

你可能感兴趣的:(shell,vscode)