diff options
author | Justin Ma | 2022-04-22 14:37:51 +0000 |
---|---|---|
committer | GitHub | 2022-04-22 14:37:51 +0000 |
commit | 5c2570582bdacf7acebf1bf4cab90699b98ecc67 (patch) | |
tree | 8bc047910e863f435e33a5b50a6b4095c3de252a /runtime/queries/nu/highlights.scm | |
parent | 3c250b7528175e67717a3c6d11be7409023d5a16 (diff) |
feat(lang): add nushell language support (#2225)
Co-authored-by: Michael Davis <mcarsondavis@gmail.com>
Diffstat (limited to 'runtime/queries/nu/highlights.scm')
-rw-r--r-- | runtime/queries/nu/highlights.scm | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/runtime/queries/nu/highlights.scm b/runtime/queries/nu/highlights.scm new file mode 100644 index 00000000..b643a63a --- /dev/null +++ b/runtime/queries/nu/highlights.scm @@ -0,0 +1,55 @@ +(string) @string +(type) @type +(value_path) @variable +(comment) @comment + +(number_literal) @constant.numeric +(range from: (number_literal) @constant.numeric) +(range to: (number_literal) @constant.numeric) + +(command cmd_name: (identifier) @function) +(function_definition func_name: (identifier) @function) + +[ + (variable_declaration name: (identifier)) + (parameter (identifier)) + (flag (flag_name)) + (flag (flag_shorthand_name)) + (record_entry entry_name: (identifier)) + (block_args block_param: (identifier)) +] @variable.other.member +; (parameter (identifier) @variable.parameter) ; -- alternative highlighting group? + +(cmd_invocation) @embedded + + +((identifier) @constant + (#match? @constant "^[A-Z][A-Z\\d_]*$")) + +[ + "if" + "else" + "let" + "def" + "export" +] @keyword + +[ + ; "/" Not making / an operator may lead to better highlighting? + "$" + "|" + "+" + "-" + "*" + "=" + "!=" + "&&" + "||" + "==" + ">" +] @operator + +["." + "," + ";" +] @punctuation.delimiter |