diff options
author | Novus Nota | 2024-03-24 22:30:59 +0000 |
---|---|---|
committer | GitHub | 2024-03-24 22:30:59 +0000 |
commit | 2d9e336f640cccdd347e35289c3e4c0371777a3f (patch) | |
tree | 4c0459834ad0796de350b169aa9e6d1da4996e27 /runtime/queries/ohm/textobjects.scm | |
parent | 47995bfb0cf3b0bc232a87340c7a01ff26d45bbc (diff) |
feat: Add `Ohm` language support (#9991)
* feat: Add `Ohm` language support
Hope this commit makes it into release :)
* Update runtime/queries/ohm/highlights.scm
Co-authored-by: Michael Davis <mcarsondavis@gmail.com>
* chore: final newline
---------
Co-authored-by: Michael Davis <mcarsondavis@gmail.com>
Diffstat (limited to 'runtime/queries/ohm/textobjects.scm')
-rw-r--r-- | runtime/queries/ohm/textobjects.scm | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/runtime/queries/ohm/textobjects.scm b/runtime/queries/ohm/textobjects.scm new file mode 100644 index 00000000..855ad8de --- /dev/null +++ b/runtime/queries/ohm/textobjects.scm @@ -0,0 +1,40 @@ +; See: https://docs.helix-editor.com/guides/textobject.html + +; function.inside & around +; ------------------------ + +(rule + body: (_) @function.inside) @function.around + +; class.inside & around +; --------------------- + +(grammar + body: (_) @class.inside) @class.around + +; parameter.inside & around +; ------------------------- + +(formals + ((_) @parameter.inside . ","? @parameter.around) @parameter.around) + +(rule_body + ((_) @parameter.inside . "|"? @parameter.around) @parameter.around) + +(params + ((_) @parameter.inside . ","? @parameter.around) @parameter.around) + +(alt + ((_) @parameter.inside . "|"? @parameter.around) @parameter.around) + +; comment.inside +; -------------- + +(multiline_comment)+ @comment.inside +(singleline_comment)+ @comment.inside + +; comment.around +; -------------- + +(multiline_comment)+ @comment.around +(singleline_comment)+ @comment.around |