我在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');