11 lines
192 B
Plaintext
11 lines
192 B
Plaintext
|
# vim: set ft=sh:
|
||
|
# shellcheck shell=sh
|
||
|
#
|
||
|
# false positive
|
||
|
# shellcheck disable=2154
|
||
|
{
|
||
|
[ "$break" = keymap ] && { print "break before run_keymap()"; sh; }
|
||
|
|
||
|
loadkmap < "$keymap_path"
|
||
|
}
|