0%

Microsoft Visual Studio Code技巧

Visual Studio Code

Extensions

  • C/C++
  • Chinese ( Simplified) Language Pack for Visual Studio Code
  • Doxygen Documentation Generator
  • Markdown All in One
  • Python
  • TODO Highlight
  • Vim
  • Wakatime
  • YAML Support by Red Hat
  • vscode-icons
  • autoconf
  • LaTex Workshop

添加 Visual Studio Code 命令行到 Mac OS X 环境变量

在环境变量中加入下面一行,或者bashrc亦或者zsh,然后就可以在终端输入code来启动了。

1
code () { VSCODE_CWD="$PWD" open -n -b "com.microsoft.VSCode" --args $* ;}

增加xelatex用于编译中文文章

只需要在tex文件的最前面,加上% !TEX program = xelatex,在编译的时候就会直接调用xelatex。

1
2
3
4
5
6
7
8
9
10
11
12
% !TEX program = xelatex
\documentclass{article}

\author{Hello}
\title{Test of xelatex in VSCode}

\begin{document}
\maketitle

你好,世界!

\end{document}
处无为之事,行不言之教;作而弗始,生而弗有,为而弗恃,功成不居!

欢迎关注我的其它发布渠道