level 1
柳上十兵卫
楼主
安装完插件后,按tab键可以跳出括号,但是他是选中括号内的文本。双引号也是选中双引号内的文本,这样很不方便,比如函数补齐之类的。之前用sublime,在用户设置里输入:
{ "keys": ["`"], "command": "move", "args": {"by": "characters", "forward": true}, "context":
[
{ "key": "following_text", "operator": "regex_contains", "operand": "^[)\\]\\>\\'\\\"]", "match_all": true },
]
},
按`键就可以跳出来了,不用占到tab键,这样不会选中文本,很方便。想知道vscode中应该怎么设置呢?
2020年04月06日 10点04分
1
{ "keys": ["`"], "command": "move", "args": {"by": "characters", "forward": true}, "context":
[
{ "key": "following_text", "operator": "regex_contains", "operand": "^[)\\]\\>\\'\\\"]", "match_all": true },
]
},
按`键就可以跳出来了,不用占到tab键,这样不会选中文本,很方便。想知道vscode中应该怎么设置呢?