Show-Paren is very useful when editing code in Yaml Block scalars. Unfortunately, it doesn't display the parenthesis matches.
Is there any reason to modify the yaml-mode syntax table with these 2 characters :
(modify-syntax-entry ?\( "." syntax-table)
(modify-syntax-entry ?\) "." syntax-table)
Show-Paren needs this syntax to highlight parentheses :
(modify-syntax-entry ?\( "()" yaml-mode-syntax-table)
(modify-syntax-entry ?\) ")(" yaml-mode-syntax-table)
Thanks
Show-Paren is very useful when editing code in Yaml Block scalars. Unfortunately, it doesn't display the parenthesis matches.
Is there any reason to modify the yaml-mode syntax table with these 2 characters :
Show-Paren needs this syntax to highlight parentheses :
Thanks