简体   繁体   English

在VSCode中选择引号之间的所有键盘快捷键是什么

[英]What is the keyboard shortcut to select everything between quotes in VSCode

I am looking for a quick way to select data:image/png;base64,... between matching quotes in VSCode. 我正在寻找一种快速的方法来选择data:image/png;base64,...在VSCode中的匹配引号之间。

在此输入图像描述

I assigned editor.action.selectToBracket keybindings to Ctrl + Shift + m as keyboard shortcut. 我将editor.action.selectToBracket键绑定指定为Ctrl + Shift + m作为键盘快捷键。 This will select everything between php tags. 这将选择php标签之间的所有内容。

在此输入图像描述

Another attempt is Shift + Alt + Right Arrow . 另一种尝试是Shift + Alt + 右箭头 This will select a whole single line. 这将选择整行。

在此输入图像描述

How to do that in VSCode and not rely on any VSCode extensions? 如何在VSCode中执行此操作而不依赖于任何VSCode扩展?

I ended up solving it as follows: Shift + End select from the current cursor location to the end of the line, then enter Left Arrow to shrink the selection. 我最终按如下方式解决: Shift + End从当前光标位置选择到行尾,然后输入左箭头以缩小选择。

在此输入图像描述

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 在Eclipse中打开文件资源管理器的键盘快捷键是什么? - What is the keyboard shortcut for opening the file explorer in Eclipse? 引号之间的文本的正则表达式是什么? - What is the regex for the text between quotes? 使用preg_replace删除除引号之间的内容之外的所有内容 - Using preg_replace to remove everything except content between quotes 正则表达式在没有斜杠的情况下选择斜杠之间的所有内容 - regex to select everything between slashes without the slashes 一切,但[和]之间的一切 - everything, but everything between [ and ] preg_match第一个SELECT和最后一个FROM之间的所有内容 - preg_match everything between first SELECT and last FROM 选择两个字符之间的所有内容而不包含它们 - Select everything between two characters without including them 我需要使用什么reg表达式来匹配{{和}}之间的所有内容 - What reg expression patten to I need to match everything between {{ and }} 正则表达式单引号仅在select和from之间,不更改开始和结束引号 - regex single quotes just between select and from without changing start and end quotes 在 PHP 中,NULL 和将字符串设置为等于 2 个单引号之间有什么区别 - In PHP, what is the differences between NULL and setting a string to equal 2 single quotes
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM