标签:
如何在命令行中快速开启sublime text3打开当前文件夹呢?
mac下配置如下:1.open .zshrc
2. alias subl="‘/Applications/Sublime Text.app/Contents/SharedSupport/bin/subl‘"
alias nano="subl"
export EDITOR="subl"
附:rvm与zsh问题:
This solution works for me: Open .zshrc
file, and find PATH line
change
export PATH=/path/to/something
into
export PATH="$PATH:/path/to/something"
save it and do source ~/.zshrc
, Then it worked.
标签:
原文地址:http://www.cnblogs.com/JackyKun/p/5041748.html