首頁  >  文章  >  開發工具  >  zsh終端機下如何用命令列開啟sublime

zsh終端機下如何用命令列開啟sublime

藏色散人
藏色散人轉載
2019-09-26 10:11:502845瀏覽

下面由sublime使用教學欄位來介紹zsh終端機下如何用命令列開啟sublime,希望對需要的朋友有幫助!

zsh終端機下如何用命令列開啟sublime

在zsh下開啟前端常見編輯器

1. .zshrc為zsh相關設定文件,先開啟設定檔

vim .zshrc

2. 新增如下程式碼,具體路徑可能不一致

alias atom='/Applications/Atom.app/Contents/MacOS/Atom'
alias subl='/Applications/SublimeText.app/Contents/SharedSupport/bin/subl'
alias code='/Applications/Visual\ Studio\ Code.app/Contents/Resources/app/bin/code'

3. 重啟即可

使用,例如用sublime開啟目前目錄

subl ./

注意: finder中顯示路徑可以在終端機中執行下面這行程式碼

defaults write com.apple.finder _FXShowPosixPathInTitle -bool TRUE;killall Finder

以上是zsh終端機下如何用命令列開啟sublime的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:segmentfault.com。如有侵權,請聯絡admin@php.cn刪除