We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
By using the normal command in Vim, it is possible to apply the macro on the selection lines or a specific range.
normal
:5,10norm! @a
would execute the macro stored in register a on lines 5 through 10 (quoted from the Stack Overflow answer).
Since Zed open command palette on colon instead, a command like apply macro to selection should help.
Zed: v0.162.5 (Zed) OS: macOS 15.1.1 Memory: 64 GiB Architecture: aarch64
No response
The text was updated successfully, but these errors were encountered:
Thanks for reporting! If you'd like to pair with me on a fix: https://calendly.com/ConradIrwin/pairing
I think it's not too hard to add :norm, the main question is how to interpret what the user writes after it.
The advantage of Vim's is that it's shorter (and vim users are familiar with it), but it's a bit inconsistent with how we do everything else.
The primary disadvantage of zed's is that it requires a space between each character.
Maybe the mix up that makes most sense is:
<>
<C-X>
<S-X>
<ctrl-X>
<alt-X>
Sorry, something went wrong.
No branches or pull requests
Check for existing issues
Describe the feature
By using the
normal
command in Vim, it is possible to apply the macro on the selection lines or a specific range.would execute the macro stored in register a on lines 5 through 10 (quoted from the Stack Overflow answer).
Since Zed open command palette on colon instead, a command like apply macro to selection should help.
Environment
Zed: v0.162.5 (Zed)
OS: macOS 15.1.1
Memory: 64 GiB
Architecture: aarch64
If applicable, add mockups / screenshots to help present your vision of the feature
No response
The text was updated successfully, but these errors were encountered: