fix(cli): Allow ot and stap in sh

This commit is contained in:
Martin Fischer 2023-08-08 09:16:01 +02:00
parent e5e8f25c8e
commit d3e48b202b

View file

@ -45,6 +45,16 @@ pub const TYPE_SPECIFIC_DICTS: &[(&str, StaticDictConfig)] = &[
],
},
),
(
"sh",
StaticDictConfig {
ignore_idents: &[
"ot", // the test command from GNU coreutils supports an -ot argument (see https://www.gnu.org/software/coreutils/manual/html_node/File-characteristic-tests.html)
"stap", // command from SystemTap (see https://sourceware.org/systemtap/man/stap.1.html)
],
ignore_words: &[],
},
),
(
"vim",
StaticDictConfig {