pub fn has_backslash_whitespace(command: &str) -> boolExpand description
True if the command contains backslash immediately before whitespace.
Bash treats \ as a literal escaped space, but tree-sitter returns the
raw text with the backslash present. We conservatively reject these cases.