• VScode 个人设置


    // Place your key bindings in this file to override the defaultsauto[]
    [
        {
            "key": "ctrl+b",
            "command": "-workbench.action.toggleSidebarVisibility"
        },
        // {
        //     "key": "ctrl+b",
        //     "command": "python.execInTerminal",
        //     "when": "resourceExtname == .py",
        // },
        {
            "key": "ctrl+b",
            "command": "latex-workshop.recipes",
            "when": "resourceExtname == .tex",
        },
        {
            "key": "f10",
            "command": "workbench.action.terminal.toggleTerminal",
        },
        {
            "key": "ctrl+b",
            "command": "code-runner.run"
        },
    ]
    
    {
        "python.jediEnabled": false,
    
    
    
        // Latex workshop
        "latex-workshop.latex.autoBuild.run": "never",
        "latex-workshop.latex.tools": [
    
            {
                "name": "xelatex",
                "command": "xelatex",
                "args": [
                "-synctex=1",
                "-interaction=nonstopmode",
                "-file-line-error",
                "%DOC%"
                ]
            },          
            {
                "name": "pdflatex",
                "command": "pdflatex",
                "args": [
                "-synctex=1",
                "-interaction=nonstopmode",
                "-file-line-error",
                "%DOC%"
                ]
            },
            {
                "name": "latexmk",
                "command": "latexmk",
                "args": [
                "-synctex=1",
                "-interaction=nonstopmode",
                "-file-line-error",
                "-pdf",
                "%DOC%"
                ]
            },
            {
                "name": "bibtex",
                "command": "bibtex",
                "args": [
                "%DOCFILE%"
                ]
            }
        ],
        "latex-workshop.latex.recipes": [
            {
                "name": "pdflatex -> bibtex -> pdflatex*2",
                "tools": [
                    "pdflatex",
                    "bibtex",
                    "pdflatex",
                    "pdflatex"
                ]
            },
            {
                "name": "xelatex",
                "tools": [
                "xelatex"
                            ]
                    },
            {
                "name": "latexmk",
                "tools": [
                "latexmk"
                            ]
            },
    
            
        ],
        "latex-workshop.view.pdf.viewer": "external",
        "latex-workshop.view.pdf.external.command": {
            "command": "C:/Program Files/SumatraPDF/SumatraPDF.exe",
            "args": [
                "%PDF%"
            ]
        },
    
        // 正向搜索
        "latex-workshop.view.pdf.external.synctex": {
            "command": "C:/Program Files/SumatraPDF/SumatraPDF.exe",
            "args": [
                "-forward-search",
                "%TEX%",
                "%LINE%",
                "%PDF%"
            ]
        },
    
        "latex-workshop.latex.clean.fileTypes": [
            "*.aux",
            "*.bbl",
            "*.blg",
            "*.idx",
            "*.ind",
            "*.lof",
            "*.lot",
            "*.out",
            "*.toc",
            "*.acn",
            "*.acr",
            "*.alg",
            "*.glg",
            "*.glo",
            "*.gls",
            "*.ist",
            "*.fls",
            "*.log",
            "*.fdb_latexmk",
            "*.synctex.gz"
        ],
    
        // Python
        "terminal.integrated.shell.windows": "C:\WINDOWS\System32\cmd.exe",
        "python.pythonPath": "C:\Miniconda3\envs\spyder\python.exe",
        "editor.largeFileOptimizations": false,
        "explorer.confirmDelete": false,
        "explorer.confirmDragAndDrop": false,
        "editor.suggestSelection": "first",
        "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
        "code-runner.executorMap": {
            "javascript": "node",
            "php": "C:\php\php.exe",
            "python": "python",
            "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 -encoding utf-8 $fileName && java $fileNameWithoutExt",
            "c": "cd $dir && gcc $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt"
        },
        "code-runner.runInTerminal": true, //强制使用终端输出, 避免中文乱码
    }
    
  • 相关阅读:
    WebForm——浏览器兼容、旋转、缩放、倾斜、移动
    System.Thread.TImer控件——http://www.360doc.com/content/11/0812/11/1039473_139824496.shtml
    U8API——向U8数据库表导入数据
    Grid++Report——打印功能
    Winform—C#读写config配置文件
    WinForm—控制文本框只能输入整数(包括小数)
    WinForm—串口通讯
    SQL Server 数据库存储过程实例
    SQL Server数据库——数据库的数据导出与数据导入
    FlowPortal-BPM——功能:判断数据库表中字段是否重复并阻止提交或保存
  • 原文地址:https://www.cnblogs.com/JohnRain/p/11502642.html
Copyright © 2020-2023  润新知