VS code的使用

vs code的使用

  • python 的使用安装
    1. 安装的插件
      Python
      MagicPython
      Python for VSCode
      Python-autopep8
    2. 系统中安装
      dnf install pylint
  • php的使用
    1.安装的插件

    PHP Debug
    PHP code Format
    Crane - PHP Intellisense
    phpcs
    

    2.系统中安装
    dnf install phpcs

  • code runner 的使用安装
    1.安装插件 code runner

(1) Ctrl+Shift+P 调出命令行
(2)输入tasks:Configure Task Runner
(3) 选other

1
2
3
4
5
6
7
8
9
10
11
12
13
{
"code-runner.executorMap": {
"javascript": "node",
"php": "php",
"python": "python",
"perl": "perl",
"ruby": "/usr/bin/ruby",
"go": "go run",
".html": "/usr/bin/google-chrome",
"java": "cd $dir && javac $fileName && java $fileNameWithoutExt",
"c": "gcc $fullFileName && ./a.out"
}
}

图片

  1. 使用
    选中需要执行的命令
    执行:Ctrl+Alt+N
    停止:Ctrl+Alt+M