summaryrefslogtreecommitdiff
path: root/fedora/.config/bash/completions/bat.bash
blob: fa0f7128aee844db25a89b692b713372c1a4d510 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
# shellcheck disable=SC2207

# Requires https://github.com/scop/bash-completion

# Macs have bash3 for which the bash-completion package doesn't include
# _init_completion. This is a minimal version of that function.
__bat_init_completion()
{
	COMPREPLY=()
	_get_comp_words_by_ref "$@" cur prev words cword
}

__bat_escape_completions()
{
	# Do not escape if completing a quoted value.
	[[ $cur == [\"\']* ]] && return 0
	if ((
		BASH_VERSINFO[0] > 5 || \
		BASH_VERSINFO[0] == 5 && BASH_VERSINFO[1] >= 3
	)); then
		# bash >= 5.3 has "compopt -o fullquote", which exactly does
		# what this function tries to do.
		compopt -o fullquote
	elif ((
		BASH_VERSINFO[0] > 4 || \
		BASH_VERSINFO[0] == 4 && BASH_VERSINFO[1] > 0
	)); then
		# printf -v to an array index is available in bash >= 4.1.
		# Use it if available, as -o filenames is semantically
		# incorrect if we are not actually completing filenames, and it
		# has side effects (e.g. adds trailing slash to candidates
		# matching present dirs).
		local i
		for i in ${!COMPREPLY[*]}; do
			printf -v "COMPREPLY[i]" %q "${COMPREPLY[i]}"
		done

		# We can use "compopt -o noquote" available in bash >= 4.3 to
		# prevent further quoting by the shell, which would be
		# unexpectedly applied when a quoted result matches a filename.
		if ((
			BASH_VERSINFO[0] > 4 || \
			BASH_VERSINFO[0] == 4 && BASH_VERSINFO[1] >= 3
		)); then
			compopt -o noquote
		fi
	else
		compopt -o filenames
	fi
}

_bat() {
	local cur prev words split=false
	if declare -F _init_completion >/dev/null 2>&1; then
		_init_completion -s || return 0
	else
		__bat_init_completion -n "=" || return 0
		_split_longopt && split=true
	fi

	if [[ ${words[1]-} == cache ]]; then
		case $prev in
		--source | --target)
			_filedir -d
			return 0
			;;
		esac
		COMPREPLY=($(compgen -W "
			--build
			--clear
			--source
			--target
			--blank
			--help
		" -- "$cur"))
		return 0
	fi

	case $prev in
	-l | --language)
		local IFS=$'\n'
		COMPREPLY=($(compgen -W "$(
			"$1" --list-languages | while IFS=: read -r lang _; do
				printf "%s\n" "$lang"
			done
		)" -- "$cur"))
		__bat_escape_completions
		return 0
		;;
	-H | --highlight-line | \
	--diff-context | \
	--tabs | \
	--terminal-width | \
	-m | --map-syntax | \
	--ignored-suffix | \
	--list-themes | \
	--squeeze-limit | \
	--line-range | \
	-L | --list-languages | \
	--lessopen | \
	--no-paging | \
	--diagnostic | \
	--acknowledgements | \
	-h | --help | \
	-V | --version | \
	--cache-dir | \
	--config-dir | \
	--config-file | \
	--generate-config-file)
		# argument required but no completion available, or option
		# causes an exit
		return 0
		;;
	--file-name)
		_filedir
		return 0
		;;
	--wrap)
		COMPREPLY=($(compgen -W "auto never character" -- "$cur"))
		return 0
		;;
	--binary)
		COMPREPLY=($(compgen -W "no-printing as-text" -- "$cur"))
		return 0
		;;
	--nonprintable-notation)
		COMPREPLY=($(compgen -W "unicode caret" -- "$cur"))
		return 0
		;;
	--strip-ansi)
		COMPREPLY=($(compgen -W "auto never always" -- "$cur"))
		return 0
		;;
	--completion)
		COMPREPLY=($(compgen -W "bash fish zsh ps1" -- "$cur"))
		return 0
		;;
	--color | --decorations | --paging)
		COMPREPLY=($(compgen -W "auto never always" -- "$cur"))
		return 0
		;;
	--italic-text)
		COMPREPLY=($(compgen -W "always never" -- "$cur"))
		return 0
		;;
	--pager)
		COMPREPLY=($(compgen -c -- "$cur"))
		return 0
		;;
	--theme)
		local IFS=$'\n'
		COMPREPLY=($(compgen -W "auto${IFS}auto:always${IFS}auto:system${IFS}dark${IFS}light${IFS}$("$1" --list-themes)" -- "$cur"))
		__bat_escape_completions
		return 0
		;;
	--theme-dark | \
	--theme-light)
		local IFS=$'\n'
		COMPREPLY=($(compgen -W "$("$1" --list-themes)" -- "$cur"))
		__bat_escape_completions
		return 0
		;;
	--style)
		# shellcheck disable=SC2034
		local -a styles=(
			default
			full
			auto
			plain
			changes
			header
			header-filename
			header-filesize
			grid
			rule
			numbers
			snip
		)
		# shellcheck disable=SC2016
		if declare -F _comp_delimited >/dev/null 2>&1; then
			# bash-completion > 2.11
			_comp_delimited , -W '"${styles[@]}"'
		else
			COMPREPLY=($(compgen -W '${styles[@]}' -- "$cur"))
		fi
		return 0
	esac

	$split && return 0

	if [[ $cur == -* ]]; then
		# --unbuffered excluded intentionally (no-op)
		COMPREPLY=($(compgen -W "
			--show-all
			--nonprintable-notation
			--binary
			--plain
			--language
			--highlight-line
			--file-name
			--diff
			--diff-context
			--tabs
			--wrap
			--chop-long-lines
			--terminal-width
			--number
			--color
			--italic-text
			--decorations
			--force-colorization
			--paging
			--no-paging
			--pager
			--map-syntax
			--ignored-suffix
			--theme
			--theme-dark
			--theme-light
			--list-themes
			--squeeze-blank
			--squeeze-limit
			--strip-ansi
			--style
			--line-range
			--list-languages
			--lessopen
			--completion
			--diagnostic
			--acknowledgements
			--set-terminal-title
			--help
			--version
			--cache-dir
			--config-dir
			--config-file
			--generate-config-file
			--no-config
			--no-custom-assets
			--no-lessopen
		" -- "$cur"))
		return 0
	fi

	_filedir
	
	## Completion of the 'cache' command itself is removed for better UX
	## See https://github.com/sharkdp/bat/issues/2085#issuecomment-1271646802
} && complete -F _bat bat