diff options
author | Michael Davis | 2022-06-01 23:40:05 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2022-06-07 11:03:31 +0000 |
commit | 7a9147489e8c058561bb37834c791b027fb0b4ae (patch) | |
tree | 1969e1de9a2f20172e5a507ca627571a75d1b021 /runtime/queries | |
parent | 9f8df05d96b0c475fefe079bca01c23eb492e6bb (diff) |
add textobject queries for erlang
Diffstat (limited to 'runtime/queries')
-rw-r--r-- | runtime/queries/erlang/highlights.scm | 2 | ||||
-rw-r--r-- | runtime/queries/erlang/textobjects.scm | 8 |
2 files changed, 9 insertions, 1 deletions
diff --git a/runtime/queries/erlang/highlights.scm b/runtime/queries/erlang/highlights.scm index bea3871a..0cb60ca9 100644 --- a/runtime/queries/erlang/highlights.scm +++ b/runtime/queries/erlang/highlights.scm @@ -58,7 +58,7 @@ (#eq? @keyword "(spec|callback)")) ; Functions -(function name: (atom) @function) +(function_clause name: (atom) @function) (call module: (atom) @module) (call function: (atom) @function) (stab_clause name: (atom) @function) diff --git a/runtime/queries/erlang/textobjects.scm b/runtime/queries/erlang/textobjects.scm new file mode 100644 index 00000000..c46b5c6f --- /dev/null +++ b/runtime/queries/erlang/textobjects.scm @@ -0,0 +1,8 @@ +(function_clause + pattern: (arguments (_)? @parameter.inside) + body: (_) @function.inside) @function.around + +(anonymous_function + (stab_clause body: (_) @function.inside)) @function.around + +(comment (comment_content) @comment.inside) @comment.around |