Answers:
我知道这是一个较晚的答案,但是希望所有遇到此问题的人都能得到帮助。
在PhpStorm中,几乎所有的东西都可以配置,但是有些棘手,需要一些学习曲线。
选择一个单词并键入单引号(或双引号)将其括起来是非常常见的行为。
Hello World
'Hello World'
"Hello World"
要启用此功能,请选中的复选框Preferences -> IDE -> Editor -> Smart Keys -> Surround Selection on typing quote or brace
。
另一种方法是,选择某些内容(单词,条件),然后按Cmd+ Alt+ T(在Mac上),Ctrl+ Alt+ T(在Windows上)。Surround With
将显示可用选项对话框。
对于PhpStorm版本8,请选中的复选框Preferences -> Editor -> General -> Smart Keys -> Surround selection on typing quote or brace
。
对于PhpStorm版本2016,使用Cmd+ Alt+ S(在Mac上)或Ctrl+ Alt+ S(在Win上)转到“设置”。勾选设置->编辑器->常规->智能键->输入引号或花括号时的环绕声选择的复选框。
如何创建实时模板以轻松更改Hello World
为{{ trans 'Hello World' }}
:
{{ trans '$SELECTION$' }}
选择Hello World
并使用上面的步骤1之后,选择带有“缩写”的规则
这只是比@ Steve.NayLinAung更详细的答案。归功于@LazyOne
在Mac上,
PhpStorm > Preferences > Editor > General > Smart Keys > Surround selection on typing quote or brace
。
您也可以按command+,
打开“首选项”菜单。
Settings | Live Templates
和使用$SELECTION$
-应该也适用于树枝文件。设置完成后,请使用Ctrl + Alt + J组合列出适用模板。更多细节在这里:blog.jetbrains.com/webide/2012/10/...