运行 Sublime Text 3 并检查版本

运行 Sublime Text 3 并检查版本

我已经安装了 Sublime Text 3unixmen.com 上的教程。如何从终端运行它以及如何检查版本(从终端或其他方式)?

答案1

启动Sublime Text的命令:

subl

查看其版本的命令:

subl --version

答案2

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

正如谷氨酸所指出的,您可以从帮助菜单中获取版本,网址为About Sublime Text

在此处输入图片描述

答案3

来自Sublime Text非官方文档:

您可以创建一个符号链接sudo ln -s /opt/Sublime\ Text\ 3/sublime_text /usr/bin/sublime。“/opt”是您安装 Sublime 的目录。

如果您愿意,文档还展示了如何将 Sublime 添加到 Unity Launcher。

相关内容