我已经在unixmen.com上的教程之后安装了Sublime Text 3 。如何从终端运行它以及如何检查版本(从终端还是其他)?
我已经在unixmen.com上的教程之后安装了Sublime Text 3 。如何从终端运行它以及如何检查版本(从终端还是其他)?
Answers:
启动Sublime Text的命令:
subl
查看其版本的命令:
subl --version
Sublime Text的常用命令是subl
:
来自subl --help
:
$ subl --help
Sublime Text build 3065
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.
因此,要获取版本:
$ subl -v
Sublime Text Build 3065
正如Glutanimate指出的那样,您可以从以下菜单的“帮助”菜单中获取版本About Sublime Text
:
Build 3065
在屏幕截图中看到了,甚至无法确定是崇高2还是崇高3 ...
您可以创建一个符号lynk sudo ln -s /opt/Sublime\ Text\ 3/sublime_text /usr/bin/sublime
。“ / opt”是您安装Sublime的目录。
该文档还显示了如何根据需要将Sublime添加到Unity Launcher。