gpt4 book ai didi

sublimetext2 - Sublime Text 使用命令面板或快捷键打开特定文件

转载 作者:行者123 更新时间:2023-12-04 05:11:34 26 4
gpt4 key购买 nike

如何使用自定义命令选项板条目或使用键绑定(bind)(也称为快捷键)打开特定文件?

有些文件我经常打开,但与任何特定项目无关。如果能够使用命令选项板或键绑定(bind)快速打开它们会很有用。

最佳答案

我们花了几分钟的时间反复试验才弄清楚如何做,但这里是如何做的。

要在命令面板中添加条目以打开特定文件,请将以下模板的修改版本添加到您的用户 Default.sublime-commands 文件中。

// Modify the caption "File Open: Whatever" to something
// appropriate and of course change the file path.

{ "caption": "File Open: Whatever", "command": "open_file",
"args": {"file": "/path/to/whatever"} },

要添加键绑定(bind)以打开特定文件,请将以下模板的修改版本添加到您的用户 Default (OS).sublime-keymap 文件中。

// Modify the key bindings to what you want and change the file path.

{ "keys": ["ctrl+t", "ctrl+w"], "command": "open_file",
"args": {"file": "/path/to/whatever"} },

希望这对您有所帮助。

关于sublimetext2 - Sublime Text 使用命令面板或快捷键打开特定文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25329429/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com