简体   繁体   中英

Select to End/Beginning of Line in Visual Studio Code

In most editors (including Visual Studio proper), I can use Shift+End to select all of the text from the cursor location to the end of the current line, and Shift+Home to select all text up to the beginning of the line.

These shortcuts don't seem to work out-of-the box (at least, on the Mac version). Is there some way to enable this, perhaps with a plugin or a setting I'm missing?

Strange it should work out of the box. If not, go to File > Preferences > Keyboard Shortcuts and look for cursorEndSelect .

{"key": "shift+end", "command": "cursorEndSelect", "when": "editorTextFocus"}

I use following inbuilt shortcut (VSCode 1.39.2, MacOS 10.15)

⌘ Command + ⇧ Shift + → Right Arrow key combination


You can access keyboard shortcut reference here: https://code.visualstudio.com/shortcuts/keyboard-shortcuts-macos.pdf

You can visit this link anytime from VS Code by navigating to

Help > Keyboard Shortcuts Reference

在此处输入图片说明

It now appears to be ⌘ Command + ⇧ Shift + ↓ Down Arrow

(MacOS Big Sur 11.6)

The way that I set up mine is to go to File > Preferences > Keyboard Shortcuts and look for cursorLineEnd and cursorLineStart. Set these to with your own shortcuts for jumping to the end and beginning of a line.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM