Just have a quick question on how to add an alias for SublimeText to my ZSH. I've been to their site where they tell you how to do it within bash, but I don't understand how to do it within ZSH. It has been killing me, I just want to open text files from my command prompt. Anyone out there have experience with ZSH where they have created aliases?
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
回答1:
Aliases in zsh
are created in the same manner as in bash
.
alias somealias='something longer'
Now somealias will expand to 'something longer' (without the quotes). Put it into ~/.zshrc
to make it persistent.
回答2:
Here is an example how to add subl
command for ZSH
http://opensourcehacker.com/2012/05/11/sublime-text-2-tips-for-python-and-web-developers/#Open_files_from_comma
Here is another example how to make UNIX EDITOR env var to use Sublime and behave well e.g. when editing subversion and git commit messages
https://github.com/miohtama/ztanesh/blob/master/zsh-scripts/rc/39-osx-vars#L11
https://github.com/miohtama/ztanesh/blob/master/zsh-scripts/bin/subl-wrapper