-
Notifications
You must be signed in to change notification settings - Fork 3.7k
New issue
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
Add textobjects queries #20924
Add textobjects queries #20924
Conversation
crates/collab/src/api/events.rs
Outdated
} | ||
} | ||
|
||
let user_properties = Some(serde_json::json!({ | ||
"is_staff": body.is_staff, | ||
"Country": country_code.clone(), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Were these telemetry changes intentional?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not on this branch
Co-Authored-By: Max <[email protected]>
6d46708
to
3f3999c
Compare
Co-Authored-By: <[email protected]>
Will these convenient grammatical movement features be supported in non-vim modes? |
I think they should be, but it's not clear to me the best way to make them available. Do you use an editor that supports this, and if so, what does the UX feel like? (and if not, what would you like?) |
amazing, [[, [], ]], ][ is exactly what I've been wanting lately, and ic, ac, if, af these is what I wanted when I first started working with zed, and now they all work. so amazing |
Yes, I'm using emacs, and emacs support lots of sexp selection/movement and mark. I use customized keybindings to use them. eg.
Some emacs pacakges eg. |
Co-Authored-By: Max [email protected]
Release Notes:
[[
,[]
,]]
,][
for navigating by section,[m
,]m
,[M
,]M
for navigating by method, and[*
,]*
,[/
,]/
for comments. These currently only work for languages built in to Zed, as they are powered by new tree-sitter queries.ic
,ac
for inside/around classes,if
,af
for functions/methods, andg c
for comments. These currently only work for languages built in to Zed, as they are powered by new tree-sitter queries.