如何在 windows 中从终端打开 sublime text?
How to open sublime text from terminal in windows?
几天前我在 d 驱动器 中安装了我的 sublime 文本编辑器,并且我对其进行了自定义。然后我在 users/my-name 目录中创建了 .bashrc 文件。然后我补充说:
alias subl = 'the directory i have copied from the app-properties'
但它不起作用..
当我输入
subl .
它告诉我,
$ subl .
bash: $: 找不到命令
如何在 git bash.
中打开 sublime 文本编辑器
enter image description here
假设您在文件夹 d:\Sublime Text 3
中安装了 sublime
。
通过这种方式,您需要为目录 users/my-name
中的 .bashrc
中的别名设置正确的路径。请注意,文件夹名称可以有退格键。
alias subl="/d/Sublime\ Text\ 3/sublime_text.exe"
在 git bash 中应用更改 运行 命令:
cd ~
source .bashrc
然后你可以 运行 sublime
使用命令:
subl .
几天前我在 d 驱动器 中安装了我的 sublime 文本编辑器,并且我对其进行了自定义。然后我在 users/my-name 目录中创建了 .bashrc 文件。然后我补充说:
alias subl = 'the directory i have copied from the app-properties'
但它不起作用.. 当我输入
subl .
它告诉我,
$ subl .
bash: $: 找不到命令
如何在 git bash.
中打开 sublime 文本编辑器enter image description here
假设您在文件夹 d:\Sublime Text 3
中安装了 sublime
。
通过这种方式,您需要为目录 users/my-name
中的 .bashrc
中的别名设置正确的路径。请注意,文件夹名称可以有退格键。
alias subl="/d/Sublime\ Text\ 3/sublime_text.exe"
在 git bash 中应用更改 运行 命令:
cd ~
source .bashrc
然后你可以 运行 sublime
使用命令:
subl .