0
0
mirror of https://github.com/vim/vim.git synced 2025-07-26 11:04:33 -04:00
Doug Kearns f57c065e75
runtime(sh): Update syntax, highlight escaped chars in test expressions
Highlight escape characters in unquoted test expression operands.

E.g., [[ foo == \[bar\] ]]

fixes #17221

Signed-off-by: Doug Kearns <dougkearns@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
2025-04-30 20:04:28 +02:00

9 lines
150 B
Bash

#!/bin/bash
# Issue #17221 (sh syntax: escaped square brackets don't work in [[ ]])
[[ foo == [bar] ]]
[[ foo == \[bar\] ]]
echo [foo]
echo \[foo\]