HEX
Server: Apache/2.4.41 (Ubuntu)
System: Linux ip-172-31-42-149 5.15.0-1084-aws #91~20.04.1-Ubuntu SMP Fri May 2 07:00:04 UTC 2025 aarch64
User: ubuntu (1000)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: //home/ubuntu/neovim/.deps/build/src/treesitter_vim/test/highlight/commands.vim
command
" <- @keyword

com
" <- @keyword

command UserCommand
" <- @keyword
"         ^ @function.macro

command -complete=buffer UserCommand echo "toto"
" <- @keyword
"           ^ @property
"                   ^ @constant
"                           ^ @function.macro
"                                     ^^^^^^^^^^ @string

command -complete=arglist UserCommand echo
" <- @keyword
"           ^ @property
"                   ^ @constant
"                           ^ @function.macro
"                                     ^ @string

command -addr=lines -addr=arguments -addr=buffers -addr=loaded_buffers UserCommand echo
" <- @keyword
"           ^ @property
"               ^ @constant
"                      ^ @property
"                          ^ @constant
"                                     ^ @property
"                                         ^ @constant
"                                                     ^ @property
"                                                         ^ @constant
"                                                                          ^ @function.macro
"                                                                                    ^ @string
"
command -addr=windows -addr=tabs -addr=quickfix -addr=other  UserCommand echo
" <- @keyword
"           ^ @property
"               ^ @constant
"                      ^ @property
"                             ^ @constant
"                                   ^ @property
"                                       ^ @constant
"                                                 ^ @property
"                                                     ^ @constant
"                                                                ^ @function.macro
"                                                                          ^ @string
"

command -range=% UserCommand echo
" <- @keyword
"           ^ @property
"              ^ @string.regexp
"                   ^ @function.macro
"                             ^ @string

command -range=12 UserCommand echo
" <- @keyword
"           ^ @property
"              ^ @number
"                   ^ @function.macro
"                             ^ @string

command -range UserCommand echo
" <- @keyword
"           ^ @property
"                 ^ @function.macro
"                           ^ @string

command -count UserCommand echo
" <- @keyword
"           ^ @property
"                 ^ @function.macro
"                           ^ @string
command -count UserCommand echo
" <- @keyword
"           ^ @property
"                 ^ @function.macro
"                           ^ @string

command -nargs=* -nargs=1 -nargs=? -nargs=+ UserCommand echo
" <- @keyword
"           ^ @property
"              ^ @string.regexp
"                    ^ @property
"                       ^ @number
"                            ^ @property
"                                ^ @string.regexp
"                                     ^ @property
"                                         ^ @string.regexp
"                                               ^ @function.macro
"                                                         ^ @string

command -buffer -bar -bang -keepscript -register UserCommand echo
" <- @keyword
"           ^ @property
"                 ^ @property
"                             ^ @property
"                                         ^ @property
"                                                  ^ @function.macro
"                                                            ^ @string

" command UserCommand call Test()

" command -complete=syntax ToggleSyntax if exists("g:syntax_on") | syntax off | else | syntax enable | endif

" command -nargs=1 -complete=mapping Show echo "this is an error message"

" com -complete=custom,funcName -buffer -addr=tabs -bang ShowFunc execute "echo 'this is another error message'"