Re: [Vim-latex-devel] German quotation marks and `
Brought to you by:
srinathava,
tmaas
From: Srinath A. <sr...@fa...> - 2003-01-14 19:13:05
|
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? Thanks, Srinath On Tue, 14 Jan 2003, Bernhard Walle wrote: > Hello, > > in german.sty the correct quotation marks are "` and "' (instead of `` > and ''). But if I type "`gut"' for example it's expanded to > "\gammaut. Is there any solution for this? > > Regards, > Bernhard > > > > ------------------------------------------------------- > This SF.NET email is sponsored by: Take your first step towards giving > your online business a competitive advantage. Test-drive a Thawte SSL > certificate - our easy online guide will show you how. Click here to get > started: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0027en > _______________________________________________ > Vim-latex-devel mailing list > Vim...@li... > https://lists.sourceforge.net/lists/listinfo/vim-latex-devel > > |