Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to ignore comments in the LaTeX file with ispell (within Emacs if possible)

I'm writing a text with Latex in English but written my comments in Finnish. When I'm running the spell checking with ispell, I got to run through all the comments. Is there a handy way to skip the comments with the ispell? If that could be done with emacs, that would be double handy =)

One way would be to run the ispell within console and process the input with sed, for example, but I'd like to have my changes straight on the file...

like image 349
Touko Avatar asked Feb 28 '23 22:02

Touko


1 Answers

(setq ispell-check-comments nil)

like image 97
Peter Miehle Avatar answered Apr 06 '23 01:04

Peter Miehle