Skip to content
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 textobject queries for protobuf grammar. #9184

Merged
merged 1 commit into from Jan 8, 2024

Conversation

rcorre
Copy link
Contributor

@rcorre rcorre commented Dec 28, 2023

Given message Foo {string s = 1;}

  • mat selects message Foo {string s = 1}
  • mit selects {string s = 1;}

Given service SearchService { rpc Search(Req) returns (Resp); }

  • mit or mat selects Req or Resp
  • mif or maf selects rpc Search(Req) returns (Resp);
  • mit selects { rpc Search(Req) returns (Resp); }
  • mat selects service SearchService { rpc Search(Req) returns (Resp); }

Given `message Foo {string s = 1;}`
- `mat` selects `message Foo {string s = 1}`
- `mit` selects `{string s = 1;}`

Given `service SearchService { rpc Search(Req) returns (Resp); }
- `mit` or `mat` selects `Req` or `Resp`
- `mif` or `maf` selects `rpc Search(Req) returns (Resp);`
- `mit` selects { rpc Search(Req) returns (Resp); }`
- `mat` selects `service SearchService { rpc Search(Req) returns (Resp); }`
@the-mikedavis the-mikedavis added S-waiting-on-review Status: Awaiting review from a maintainer. A-language-support Area: Support for programming/text languages labels Jan 2, 2024
@pascalkuthe pascalkuthe merged commit c8e5830 into helix-editor:master Jan 8, 2024
6 checks passed
@rcorre rcorre deleted the protobuf-textobjects branch January 8, 2024 13:18
woojiq pushed a commit to woojiq/helix that referenced this pull request Jan 13, 2024
Given `message Foo {string s = 1;}`
- `mat` selects `message Foo {string s = 1}`
- `mit` selects `{string s = 1;}`

Given `service SearchService { rpc Search(Req) returns (Resp); }
- `mit` or `mat` selects `Req` or `Resp`
- `mif` or `maf` selects `rpc Search(Req) returns (Resp);`
- `mit` selects { rpc Search(Req) returns (Resp); }`
- `mat` selects `service SearchService { rpc Search(Req) returns (Resp); }`
dgkf pushed a commit to dgkf/helix that referenced this pull request Jan 30, 2024
Given `message Foo {string s = 1;}`
- `mat` selects `message Foo {string s = 1}`
- `mit` selects `{string s = 1;}`

Given `service SearchService { rpc Search(Req) returns (Resp); }
- `mit` or `mat` selects `Req` or `Resp`
- `mif` or `maf` selects `rpc Search(Req) returns (Resp);`
- `mit` selects { rpc Search(Req) returns (Resp); }`
- `mat` selects `service SearchService { rpc Search(Req) returns (Resp); }`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-language-support Area: Support for programming/text languages S-waiting-on-review Status: Awaiting review from a maintainer.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants