mirror of
https://github.com/vim/vim
synced 2025-05-02 22:37:47 +02:00
Dash may not be installed on a BSD CI runner, list it in the shebang line. See #17084 closes: #17094 Signed-off-by: Aliaksei Budavei <0x000c70@gmail.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
9 lines
272 B
Bash
9 lines
272 B
Bash
#!/bin/dash
|
|
# Issue #17026 (bash highlighting requires space after $())
|
|
# https://github.com/vim/vim/issues/17026#issuecomment-2774112284
|
|
|
|
_comp_compgen_split -l -- "$(
|
|
tmux list-commands -F "#{command_list_name}"
|
|
tmux list-commands -F "#{command_list_alias}"
|
|
)"
|
|
|