Re: [Vim-latex-devel] German quotation marks and `
Brought to you by:
srinathava,
tmaas
From: Benji F. <be...@me...> - 2003-01-14 19:24:18
|
Srinath Avadhanula wrote: > Sorry about that. The problem is due to `g being mapped to \gamma. I > will fix this now. > > [To Vim devel] > More unprotected quote maps!!! Ouch! As of now, `g doesnt get expanded > in the following scenarios: > > ``g > \`g > > Now it looks like it should also be protected in > > "`g > > As of now, the way to protect against these expansions is to define: > > call IMAP('`g', '\gamma', 'tex') > " The following fake maps are just to make `g not expand when preceded > " \ or `. > call IMAP('``g', '``g', 'tex') > call IMAP('\`g', '\`g', 'tex') > > and so on and so forth... Is this really the correct way to attack this > problem? Or can someone think of something more elegant? Change the defaults. Almost all Insert-mode mappings should be off by default. --Benji |