On 8 December 2016 at 17:55, Marc Simpson <[email protected]> wrote: > Enter (on newlines): ^Ka' ^Ka` ^Ke" ^Ke` (where ^K is control-k) after > sourcing digraphs.rc. > > Output in my buffer, > > ^Ka' > à > ^Ke" > è > > i.e., ' and " aren't rendering the appropriate digraphs (á, é). As far > as I can tell, this affects all mappings involving quote characters.
I'm not seeing the incorrect characters, but for anything involving ' or " I'm just getting the ^K sequence inserted unchanged. This is with version 9.8l and 9.8r. Looking in digraphs.rc, I see that the quote characters are escaped in the map! statements: map! ^Ka` ^V224 map! ^Ka\' ^V225 map! ^Ka\" ^V228 So the first works fine, and produces à as expected. The other two require the backslash to be entered as part of the sequence to work. i.e. the four character sequence ^Ka\' produces á. Omitting the backslash gives the input unchanged: ^Ka'. Editing diagraphs.rc to remove the backslashes appears to load fine, and then the digraph works as expected. Did the rc parser change Tom? _______________________________________________ vile mailing list [email protected] https://lists.nongnu.org/mailman/listinfo/vile
