aboutsummaryrefslogtreecommitdiffstats
path: root/queries/bash
diff options
context:
space:
mode:
authorChristian Clason <c.clason@uni-graz.at>2023-06-12 09:54:30 -0600
committerChristian Clason <c.clason@uni-graz.at>2025-05-12 18:43:40 +0200
commit692b051b09935653befdb8f7ba8afdb640adf17b (patch)
tree167162b6b129ae04f68c5735078521a72917c742 /queries/bash
parentfeat(c-family): inherit injections (diff)
downloadnvim-treesitter-692b051b09935653befdb8f7ba8afdb640adf17b.tar
nvim-treesitter-692b051b09935653befdb8f7ba8afdb640adf17b.tar.gz
nvim-treesitter-692b051b09935653befdb8f7ba8afdb640adf17b.tar.bz2
nvim-treesitter-692b051b09935653befdb8f7ba8afdb640adf17b.tar.lz
nvim-treesitter-692b051b09935653befdb8f7ba8afdb640adf17b.tar.xz
nvim-treesitter-692b051b09935653befdb8f7ba8afdb640adf17b.tar.zst
nvim-treesitter-692b051b09935653befdb8f7ba8afdb640adf17b.zip
feat!: drop modules, general refactor and cleanup
Diffstat (limited to 'queries/bash')
-rw-r--r--queries/bash/folds.scm9
-rw-r--r--queries/bash/highlights.scm261
-rw-r--r--queries/bash/injections.scm79
-rw-r--r--queries/bash/locals.scm14
4 files changed, 0 insertions, 363 deletions
diff --git a/queries/bash/folds.scm b/queries/bash/folds.scm
deleted file mode 100644
index 766dbe598..000000000
--- a/queries/bash/folds.scm
+++ /dev/null
@@ -1,9 +0,0 @@
-[
- (function_definition)
- (if_statement)
- (case_statement)
- (for_statement)
- (while_statement)
- (c_style_for_statement)
- (heredoc_redirect)
-] @fold
diff --git a/queries/bash/highlights.scm b/queries/bash/highlights.scm
deleted file mode 100644
index 58d57d9e5..000000000
--- a/queries/bash/highlights.scm
+++ /dev/null
@@ -1,261 +0,0 @@
-[
- "("
- ")"
- "{"
- "}"
- "["
- "]"
- "[["
- "]]"
- "(("
- "))"
-] @punctuation.bracket
-
-[
- ";"
- ";;"
- ";&"
- ";;&"
- "&"
-] @punctuation.delimiter
-
-[
- ">"
- ">>"
- "<"
- "<<"
- "&&"
- "|"
- "|&"
- "||"
- "="
- "+="
- "=~"
- "=="
- "!="
- "&>"
- "&>>"
- "<&"
- ">&"
- ">|"
- "<&-"
- ">&-"
- "<<-"
- "<<<"
- ".."
- "!"
-] @operator
-
-; Do *not* spell check strings since they typically have some sort of
-; interpolation in them, or, are typically used for things like filenames, URLs,
-; flags and file content.
-[
- (string)
- (raw_string)
- (ansi_c_string)
- (heredoc_body)
-] @string
-
-[
- (heredoc_start)
- (heredoc_end)
-] @label
-
-(variable_assignment
- (word) @string)
-
-(command
- argument: "$" @string) ; bare dollar
-
-(concatenation
- (word) @string)
-
-[
- "if"
- "then"
- "else"
- "elif"
- "fi"
- "case"
- "in"
- "esac"
-] @keyword.conditional
-
-[
- "for"
- "do"
- "done"
- "select"
- "until"
- "while"
-] @keyword.repeat
-
-[
- "declare"
- "typeset"
- "readonly"
- "local"
- "unset"
- "unsetenv"
-] @keyword
-
-"export" @keyword.import
-
-"function" @keyword.function
-
-(special_variable_name) @constant
-
-; trap -l
-((word) @constant.builtin
- (#any-of? @constant.builtin
- "SIGHUP" "SIGINT" "SIGQUIT" "SIGILL" "SIGTRAP" "SIGABRT" "SIGBUS" "SIGFPE" "SIGKILL" "SIGUSR1"
- "SIGSEGV" "SIGUSR2" "SIGPIPE" "SIGALRM" "SIGTERM" "SIGSTKFLT" "SIGCHLD" "SIGCONT" "SIGSTOP"
- "SIGTSTP" "SIGTTIN" "SIGTTOU" "SIGURG" "SIGXCPU" "SIGXFSZ" "SIGVTALRM" "SIGPROF" "SIGWINCH"
- "SIGIO" "SIGPWR" "SIGSYS" "SIGRTMIN" "SIGRTMIN+1" "SIGRTMIN+2" "SIGRTMIN+3" "SIGRTMIN+4"
- "SIGRTMIN+5" "SIGRTMIN+6" "SIGRTMIN+7" "SIGRTMIN+8" "SIGRTMIN+9" "SIGRTMIN+10" "SIGRTMIN+11"
- "SIGRTMIN+12" "SIGRTMIN+13" "SIGRTMIN+14" "SIGRTMIN+15" "SIGRTMAX-14" "SIGRTMAX-13"
- "SIGRTMAX-12" "SIGRTMAX-11" "SIGRTMAX-10" "SIGRTMAX-9" "SIGRTMAX-8" "SIGRTMAX-7" "SIGRTMAX-6"
- "SIGRTMAX-5" "SIGRTMAX-4" "SIGRTMAX-3" "SIGRTMAX-2" "SIGRTMAX-1" "SIGRTMAX"))
-
-((word) @boolean
- (#any-of? @boolean "true" "false"))
-
-(comment) @comment @spell
-
-(test_operator) @operator
-
-(command_substitution
- "$(" @punctuation.special
- ")" @punctuation.special)
-
-(process_substitution
- [
- "<("
- ">("
- ] @punctuation.special
- ")" @punctuation.special)
-
-(arithmetic_expansion
- [
- "$(("
- "(("
- ] @punctuation.special
- "))" @punctuation.special)
-
-(arithmetic_expansion
- "," @punctuation.delimiter)
-
-(ternary_expression
- [
- "?"
- ":"
- ] @keyword.conditional.ternary)
-
-(binary_expression
- operator: _ @operator)
-
-(unary_expression
- operator: _ @operator)
-
-(postfix_expression
- operator: _ @operator)
-
-(function_definition
- name: (word) @function)
-
-(command_name
- (word) @function.call)
-
-(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" "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: [
- (word) @variable.parameter
- (concatenation
- (word) @variable.parameter)
- ])
-
-(declaration_command
- (word) @variable.parameter)
-
-(unset_command
- (word) @variable.parameter)
-
-(number) @number
-
-((word) @number
- (#lua-match? @number "^[0-9]+$"))
-
-(file_redirect
- (word) @string.special.path)
-
-(herestring_redirect
- (word) @string)
-
-(file_descriptor) @operator
-
-(simple_expansion
- "$" @punctuation.special) @none
-
-(expansion
- "${" @punctuation.special
- "}" @punctuation.special) @none
-
-(expansion
- operator: _ @punctuation.special)
-
-(expansion
- "@"
- .
- operator: _ @character.special)
-
-((expansion
- (subscript
- index: (word) @character.special))
- (#any-of? @character.special "@" "*"))
-
-"``" @punctuation.special
-
-(variable_name) @variable
-
-((variable_name) @constant
- (#lua-match? @constant "^[A-Z][A-Z_0-9]*$"))
-
-((variable_name) @variable.builtin
- (#any-of? @variable.builtin
- ; https://www.gnu.org/software/bash/manual/html_node/Bourne-Shell-Variables.html
- "CDPATH" "HOME" "IFS" "MAIL" "MAILPATH" "OPTARG" "OPTIND" "PATH" "PS1" "PS2"
- ; https://www.gnu.org/software/bash/manual/html_node/Bash-Variables.html
- "_" "BASH" "BASHOPTS" "BASHPID" "BASH_ALIASES" "BASH_ARGC" "BASH_ARGV" "BASH_ARGV0" "BASH_CMDS"
- "BASH_COMMAND" "BASH_COMPAT" "BASH_ENV" "BASH_EXECUTION_STRING" "BASH_LINENO"
- "BASH_LOADABLES_PATH" "BASH_REMATCH" "BASH_SOURCE" "BASH_SUBSHELL" "BASH_VERSINFO"
- "BASH_VERSION" "BASH_XTRACEFD" "CHILD_MAX" "COLUMNS" "COMP_CWORD" "COMP_LINE" "COMP_POINT"
- "COMP_TYPE" "COMP_KEY" "COMP_WORDBREAKS" "COMP_WORDS" "COMPREPLY" "COPROC" "DIRSTACK" "EMACS"
- "ENV" "EPOCHREALTIME" "EPOCHSECONDS" "EUID" "EXECIGNORE" "FCEDIT" "FIGNORE" "FUNCNAME"
- "FUNCNEST" "GLOBIGNORE" "GROUPS" "histchars" "HISTCMD" "HISTCONTROL" "HISTFILE" "HISTFILESIZE"
- "HISTIGNORE" "HISTSIZE" "HISTTIMEFORMAT" "HOSTFILE" "HOSTNAME" "HOSTTYPE" "IGNOREEOF" "INPUTRC"
- "INSIDE_EMACS" "LANG" "LC_ALL" "LC_COLLATE" "LC_CTYPE" "LC_MESSAGES" "LC_NUMERIC" "LC_TIME"
- "LINENO" "LINES" "MACHTYPE" "MAILCHECK" "MAPFILE" "OLDPWD" "OPTERR" "OSTYPE" "PIPESTATUS"
- "POSIXLY_CORRECT" "PPID" "PROMPT_COMMAND" "PROMPT_DIRTRIM" "PS0" "PS3" "PS4" "PWD" "RANDOM"
- "READLINE_ARGUMENT" "READLINE_LINE" "READLINE_MARK" "READLINE_POINT" "REPLY" "SECONDS" "SHELL"
- "SHELLOPTS" "SHLVL" "SRANDOM" "TIMEFORMAT" "TMOUT" "TMPDIR" "UID"))
-
-(case_item
- value: (word) @variable.parameter)
-
-[
- (regex)
- (extglob_pattern)
-] @string.regexp
-
-((program
- .
- (comment) @keyword.directive @nospell)
- (#lua-match? @keyword.directive "^#!/"))
diff --git a/queries/bash/injections.scm b/queries/bash/injections.scm
deleted file mode 100644
index 9b86e351a..000000000
--- a/queries/bash/injections.scm
+++ /dev/null
@@ -1,79 +0,0 @@
-((comment) @injection.content
- (#set! injection.language "comment"))
-
-((regex) @injection.content
- (#set! injection.language "regex"))
-
-((heredoc_redirect
- (heredoc_body) @injection.content
- (heredoc_end) @injection.language)
- (#downcase! @injection.language))
-
-; printf 'format'
-((command
- name: (command_name) @_command
- .
- argument: [
- (string) @injection.content
- (concatenation
- (string) @injection.content)
- (raw_string) @injection.content
- (concatenation
- (raw_string) @injection.content)
- ])
- (#eq? @_command "printf")
- (#offset! @injection.content 0 1 0 -1)
- (#set! injection.include-children)
- (#set! injection.language "printf"))
-
-; printf -v var 'format'
-((command
- name: (command_name) @_command
- argument: (word) @_arg
- .
- (_)
- .
- argument: [
- (string) @injection.content
- (concatenation
- (string) @injection.content)
- (raw_string) @injection.content
- (concatenation
- (raw_string) @injection.content)
- ])
- (#eq? @_command "printf")
- (#eq? @_arg "-v")
- (#offset! @injection.content 0 1 0 -1)
- (#set! injection.include-children)
- (#set! injection.language "printf"))
-
-; printf -- 'format'
-((command
- name: (command_name) @_command
- argument: (word) @_arg
- .
- argument: [
- (string) @injection.content
- (concatenation
- (string) @injection.content)
- (raw_string) @injection.content
- (concatenation
- (raw_string) @injection.content)
- ])
- (#eq? @_command "printf")
- (#eq? @_arg "--")
- (#offset! @injection.content 0 1 0 -1)
- (#set! injection.include-children)
- (#set! injection.language "printf"))
-
-((command
- name: (command_name) @_command
- .
- argument: [
- (string)
- (raw_string)
- ] @injection.content)
- (#eq? @_command "bind")
- (#offset! @injection.content 0 1 0 -1)
- (#set! injection.include-children)
- (#set! injection.language "readline"))
diff --git a/queries/bash/locals.scm b/queries/bash/locals.scm
deleted file mode 100644
index 347f51fa2..000000000
--- a/queries/bash/locals.scm
+++ /dev/null
@@ -1,14 +0,0 @@
-; Scopes
-(function_definition) @local.scope
-
-; Definitions
-(variable_assignment
- name: (variable_name) @local.definition.var)
-
-(function_definition
- name: (word) @local.definition.function)
-
-; References
-(variable_name) @local.reference
-
-(word) @local.reference