Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'runtime/queries/cylc/textobjects.scm')
| -rw-r--r-- | runtime/queries/cylc/textobjects.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/runtime/queries/cylc/textobjects.scm b/runtime/queries/cylc/textobjects.scm new file mode 100644 index 00000000..00ed52ff --- /dev/null +++ b/runtime/queries/cylc/textobjects.scm @@ -0,0 +1,23 @@ +(comment) @comment.inside + +(comment)+ @comment.around + +(_ + brackets_open: _ + name: _? + brackets_close: _ + _* @class.inside) @class.around + +(setting + value: _? @function.inside) @function.around + +(graph_setting + value: _? @function.inside) @function.around + +(graph_string_content + (graph_task) @entry.inside) + +(task_parameter + ((_) @parameter.inside + . + ","? @parameter.around) @parameter.around) |