Псевдоним Zsh для запуска Sublime Text с открытым текущим каталогом - PullRequest
0 голосов
/ 09 марта 2019

Я использую zsh и пытаюсь создать ярлык, stt, чтобы я мог открыть папку в возвышенном тексте. В настоящее время я добавил псевдоним, который я нашел на веб-сайте, но он открывает только пустое возвышенное, без файлов из моей папки. Я не уверен, что мне нужно добавить. Благодаря.

alias stt="/Applications/Sublime\ Text.app/Contents/SharedSupport/bin/subl"

1 Ответ

0 голосов
/ 15 марта 2019

Документация от subl:

subl --help
Sublime Text 2 Build 2221                                                                                                                                                                                                                     

Usage: sublime_text [arguments] [files]         edit the given files
   or: sublime_text [arguments] [directories]   open the given directories

Arguments:
  --project <project>: Load the given project
  --command <command>: Run the given command
  -n or --new-window:  Open a new window
  -a or --add:         Add folders to the current window
  -w or --wait:        Wait for the files to be closed before returning
  -b or --background:  Don't activate the application
  -h or --help:        Show help (this message) and exit
  -v or --version:     Show version and exit

Filenames may be given a :line or :line:column suffix to open at a specific
location.

Чтобы сделать псевдоним stt, откройте новое окно с открытым текущим рабочим каталогом:

alias stt='/Applications/Sublime\ Text.app/Contents/SharedSupport/bin/subl -n -a .'
...