
Motivation for the `cmd-` check is that there were a couple keybindings using `cmd-` in the linux keymap and so these were bound to super / windows Release Notes: - N/A
14 lines
402 B
Bash
Executable file
14 lines
402 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
# Brackets are used around characters so these don't show up in normal search.
|
|
pattern='tod[o]!|FIXM[E]'
|
|
result=$(git grep --no-color --ignore-case --line-number --extended-regexp -e $pattern -- \
|
|
':(exclude).github/workflows/ci.yml' \
|
|
':(exclude)*criteria.md' \
|
|
':(exclude)*prompt.md' || true)
|
|
if [[ -n "${result}" ]]; then
|
|
echo "${result}"
|
|
exit 1
|
|
fi
|