diff options
| author | 再生花 <hoangtun0810@gmail.com> | 2024-02-23 17:42:01 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-02-23 10:42:01 +0200 |
| commit | 31641d72a4c33536e9d5fc8f829d2ba84211af8a (patch) | |
| tree | 65d4edd50b87eacb993dab1fd27347d6686d3c0e /queries/fish | |
| parent | feat(faust): better highlighting of function calls, built-in variables, and m... (diff) | |
| download | nvim-treesitter-31641d72a4c33536e9d5fc8f829d2ba84211af8a.tar nvim-treesitter-31641d72a4c33536e9d5fc8f829d2ba84211af8a.tar.gz nvim-treesitter-31641d72a4c33536e9d5fc8f829d2ba84211af8a.tar.bz2 nvim-treesitter-31641d72a4c33536e9d5fc8f829d2ba84211af8a.tar.lz nvim-treesitter-31641d72a4c33536e9d5fc8f829d2ba84211af8a.tar.xz nvim-treesitter-31641d72a4c33536e9d5fc8f829d2ba84211af8a.tar.zst nvim-treesitter-31641d72a4c33536e9d5fc8f829d2ba84211af8a.zip | |
feat(format-scripts): linewrap predicates
"format-ignore".kick()
Diffstat (limited to 'queries/fish')
| -rw-r--r-- | queries/fish/highlights.scm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/queries/fish/highlights.scm b/queries/fish/highlights.scm index 77dccbf89..506602098 100644 --- a/queries/fish/highlights.scm +++ b/queries/fish/highlights.scm @@ -116,7 +116,11 @@ name: [ (word) @function.builtin - (#any-of? @function.builtin "." ":" "_" "alias" "argparse" "bg" "bind" "block" "breakpoint" "builtin" "cd" "command" "commandline" "complete" "contains" "count" "disown" "echo" "emit" "eval" "exec" "exit" "fg" "functions" "history" "isatty" "jobs" "math" "printf" "pwd" "random" "read" "realpath" "set" "set_color" "source" "status" "string" "test" "time" "type" "ulimit" "wait") + (#any-of? @function.builtin + "." ":" "_" "alias" "argparse" "bg" "bind" "block" "breakpoint" "builtin" "cd" "command" + "commandline" "complete" "contains" "count" "disown" "echo" "emit" "eval" "exec" "exit" "fg" + "functions" "history" "isatty" "jobs" "math" "printf" "pwd" "random" "read" "realpath" "set" + "set_color" "source" "status" "string" "test" "time" "type" "ulimit" "wait") ]) ; Functions |
