"我是..,文本"
用鼠标操作双引号中字符,需要操作很多次, 是有有快捷的方法可以一次完成选择呢?
1
scarlex 2015-03-02 23:59:18 +08:00
vim模式,按 vi" 即可
|
2
scarlex 2015-03-03 00:01:11 +08:00
忘了说,要把光标放到 双引号 的中间。 例如: "abcde_abcde" ,_ 表示当前光标,然后按 vi"
|
3
freewizard 2015-03-03 02:03:31 +08:00
Find All by Reg Exp on:
``` (?<=").+(?=") ``` |
4
ituren 2015-03-04 10:13:38 +08:00
{ "keys": ["alt+d"], "command": "expand_selection", "args": {"to": "scope"} },
|