VSCode - 自动 select 非单词字符
VSCode - Auto select non-word characters
如何在 Visual Studio 代码中启用自动 select 非单词字符?
这里是atom中的设置。
只需在 Atom 编辑器中双击,即可启用 select 多个变量,例如 $foo
或颜色 #fff
。 selection 我的意思是从 $ 到 $foo 中的 o。在双击 $foo
时,VSCode select 只有 foo。
有没有办法启用它?
settings.json
"editor.wordSeparators"
默认值:~!@#$%^&*()-=+[{]}\|;:'\",.<>/?
删除符号
美元:
"editor.wordSeparators": "`~!@#%^&*()-=+[{]}\|;:'\",.<>/?"
尖锐:
"editor.wordSeparators": "`~!@$%^&*()-=+[{]}\|;:'\",.<>/?"
两者:
"editor.wordSeparators": "`~!@%^&*()-=+[{]}\|;:'\",.<>/?"
如何在 Visual Studio 代码中启用自动 select 非单词字符?
这里是atom中的设置。
只需在 Atom 编辑器中双击,即可启用 select 多个变量,例如 $foo
或颜色 #fff
。 selection 我的意思是从 $ 到 $foo 中的 o。在双击 $foo
时,VSCode select 只有 foo。
有没有办法启用它?
settings.json
"editor.wordSeparators"
默认值:~!@#$%^&*()-=+[{]}\|;:'\",.<>/?
删除符号
美元:
"editor.wordSeparators": "`~!@#%^&*()-=+[{]}\|;:'\",.<>/?"
尖锐:
"editor.wordSeparators": "`~!@$%^&*()-=+[{]}\|;:'\",.<>/?"
两者:
"editor.wordSeparators": "`~!@%^&*()-=+[{]}\|;:'\",.<>/?"