在 WebStorm 中,如何在 .txt 文件中使用实时模板?
In WebStorm, how to use live templates in .txt files?
我在我所有的 WebStorm 项目中都有一个 "notes.txt" 文件。
如何使用插入实时模板 (Ctrl + J)、环绕实时模板 (Ctrl + Alt + J)、在 .txt 文件中用 (Ctrl + Alt + T) 包围?
此外,如何为特定文件后缀创建实时模板上下文?
例如,在我的 notes.txt 文件中,我想用
包围选择
[]
和
()
How can I use Insert Live Template (Ctrl + J
), Surround With Live Template (Ctrl + Alt + J
), Surround With (Ctrl + Alt + T
) in a .txt file?
使用Other
上下文
Also, how can I create a Live Templates Context for a particular file suffix?
作为普通 IDE 用户(通过某些 GUI)——没办法(没有这样的功能)。仅通过自定义插件。
For instance, in my notes.txt file, I'd like to surround The Selection with
- [] and
- ()
为此您不需要实时模板。
你所需要的只是Settings/Preferences | Editor | General | Smart Keys --> Surround selection on typing quote or brace
。
但如果您坚持使用实时模板——使用 Other
上下文(见上面的截图——实时模板就是这样做的)
我在我所有的 WebStorm 项目中都有一个 "notes.txt" 文件。
如何使用插入实时模板 (Ctrl + J)、环绕实时模板 (Ctrl + Alt + J)、在 .txt 文件中用 (Ctrl + Alt + T) 包围?
此外,如何为特定文件后缀创建实时模板上下文?
例如,在我的 notes.txt 文件中,我想用
包围选择[]
和()
How can I use Insert Live Template (
Ctrl + J
), Surround With Live Template (Ctrl + Alt + J
), Surround With (Ctrl + Alt + T
) in a .txt file?
使用Other
上下文
Also, how can I create a Live Templates Context for a particular file suffix?
作为普通 IDE 用户(通过某些 GUI)——没办法(没有这样的功能)。仅通过自定义插件。
For instance, in my notes.txt file, I'd like to surround The Selection with
- [] and
- ()
为此您不需要实时模板。
你所需要的只是Settings/Preferences | Editor | General | Smart Keys --> Surround selection on typing quote or brace
。
但如果您坚持使用实时模板——使用 Other
上下文(见上面的截图——实时模板就是这样做的)