我正在为 SQL Server 编辑 *.sql 文件中的 SQL。当我Enter将 SQL 字符串拆分为两行时:
INSERT INTO foo (bar) VALUES ('This is a line');
-- Cursor here: |
... PhpStorm 将始终关闭字符串并插入连接运算符:
INSERT INTO foo (bar) VALUES ('This is' +
' a line');
是否有仅插入换行符的键盘快捷键?
INSERT INTO foo (bar) VALUES ('This is
a line');