安装尝鲜了一下。
#14 楼 @jicheng1014 和 atom(因为基于同一套框架实现)比,流畅,对 git 支持好,支持大文件(理论最大支持 1g,但我测试过会崩溃,其他网友测试了百兆左右文件操作流畅),支持拖拽。
Mac OS X 下面如果要想在 Termal 里面实现像 TextMate -> mate, Sublime Text -> subl 那样的命令,可以这样:
在 ~/.bash_profile 里面增加
code () {
if [[ $# = 0 ]]
then
open -a "Visual Studio Code"
else
[[ $1 = /* ]] && F="$1" || F="$PWD/${1#./}"
open -a "Visual Studio Code" --args "$F"
fi
}
然后就可以在 Termal 下面执行 code
命令来启动 Visual Studio Code 来打开文件了
比如:
$ cd ruby-china
$ code .