For example: syn match diffOnly "^.*だけに発見: .*"
This message is displayed by "diff" tool. Not depend on the languages. In multi-byte users, this makes many problems. C:\SomeRepo\>svn diff | vim - When some files are only in left(or right) side, the message above is displayed but it is encoded in the current locale. ex. cp932 on japanese windows. And vim often mis-judge the encoding. So I often do following. C:\SomeRepo\>set LANG=C C:\SomeRepo\>svn diff | vim - This is not possible to avoid to be containing several encodings. Just one of way to avoid this problem is to not do match the string. - Yasuhiro Matsumoto -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this message because you are subscribed to the Google Groups "vim_dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
