diff options
| author | Omar Valdez <omarantoniovaldezf2@gmail.com> | 2024-10-26 19:23:20 -0700 |
|---|---|---|
| committer | Christian Clason <ch.clason+github@icloud.com> | 2024-10-30 08:38:06 +0100 |
| commit | 0e65a9f272510de71d1fda0615d69ac7f0c4d2a0 (patch) | |
| tree | 894b9fc232eae01a36c09ad48e50db2bd9a59f28 /queries | |
| parent | ci(update): skip gnuplot, unskip djot (diff) | |
| download | nvim-treesitter-0e65a9f272510de71d1fda0615d69ac7f0c4d2a0.tar nvim-treesitter-0e65a9f272510de71d1fda0615d69ac7f0c4d2a0.tar.gz nvim-treesitter-0e65a9f272510de71d1fda0615d69ac7f0c4d2a0.tar.bz2 nvim-treesitter-0e65a9f272510de71d1fda0615d69ac7f0c4d2a0.tar.lz nvim-treesitter-0e65a9f272510de71d1fda0615d69ac7f0c4d2a0.tar.xz nvim-treesitter-0e65a9f272510de71d1fda0615d69ac7f0c4d2a0.tar.zst nvim-treesitter-0e65a9f272510de71d1fda0615d69ac7f0c4d2a0.zip | |
feat(bash): highlight more builtin commands
Commands:
- `.`
- `:`
- `true`
- `false`
Diffstat (limited to 'queries')
| -rw-r--r-- | queries/bash/highlights.scm | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/queries/bash/highlights.scm b/queries/bash/highlights.scm index ef806eeab..5f6b00825 100644 --- a/queries/bash/highlights.scm +++ b/queries/bash/highlights.scm @@ -169,11 +169,11 @@ (command_name (word) @function.builtin (#any-of? @function.builtin - "alias" "bg" "bind" "break" "builtin" "caller" "cd" "command" "compgen" "complete" "compopt" - "continue" "coproc" "dirs" "disown" "echo" "enable" "eval" "exec" "exit" "fc" "fg" "getopts" - "hash" "help" "history" "jobs" "kill" "let" "logout" "mapfile" "popd" "printf" "pushd" "pwd" - "read" "readarray" "return" "set" "shift" "shopt" "source" "suspend" "test" "time" "times" - "trap" "type" "typeset" "ulimit" "umask" "unalias" "wait")) + "." ":" "alias" "bg" "bind" "break" "builtin" "caller" "cd" "command" "compgen" "complete" + "compopt" "continue" "coproc" "dirs" "disown" "echo" "enable" "eval" "exec" "exit" "false" "fc" + "fg" "getopts" "hash" "help" "history" "jobs" "kill" "let" "logout" "mapfile" "popd" "printf" + "pushd" "pwd" "read" "readarray" "return" "set" "shift" "shopt" "source" "suspend" "test" "time" + "times" "trap" "true" "type" "typeset" "ulimit" "umask" "unalias" "wait")) (command argument: [ |
