Adding an alias for Sublime Text to zshrc

别来无恙 提交于 2019-12-13 12:01:37

问题


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



来源:https://stackoverflow.com/questions/12334681/adding-an-alias-for-sublime-text-to-zshrc

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!