Add Support for “Add Cursors to Line Ends” from VSCode Keymap (i.e. editor::AddSelection
)
#25093
Closed
stepankuzmin
started this conversation in
Config, Settings and Keymaps
Replies: 2 comments 2 replies
-
Zed has it as but it is unmapped by default currently in VSCode scheme: zed/assets/keymaps/default-macos.json Line 392 in adb0d32 |
Beta Was this translation helpful? Give feedback.
1 reply
-
Can you elaborate on that? I know that Sublime Text 2 has this keybinding and Zed has a Sublime keymap base with the exact same binding. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Zed currently lacks a built-in hotkey action to add cursors at the end of each line in a selection, a feature that was available in Atom keymaps and is supported in VSCode via
Cmd+Shift+L
.Zed provides
editor::AddSelectionAbove
andeditor::AddSelectionBelow
, but these commands always extend the selection by adding an extra line above or below, rather than strictly adding cursors to the end of the currently selected lines. As a result, they don’t work as a direct replacement for this functionality.Expected Behavior:
Untitled.mov
Beta Was this translation helpful? Give feedback.
All reactions