Skip to content

TeXstudio

Gabor Szarnyas edited this page Mar 6, 2020 · 4 revisions

Spell checker

To use a Hungarian (hu_HU) dictionary for the spell checker, visit the magyarispell, generate the hu_HU.dic/hu_HU.aff files, and copy them to the hunspell directory of your system (e.g. /usr/share/hunspell).

Automatic reload

To automatically reload files upon changes, go to Options | Configure TeXstudio.... Click show Advanced Options, select Adv. Editor and Silently reload saves files on external changes. Beware, as TeXstudio warns you, this discards the undo/redo stack.

TeXstudio sometimes, seemingly randomly, displays a duck when pressing the Esc key.

This is the related source code - it's quite easy to figure what is does:

QTime ct = QTime::currentTime();
if (ct.second() % 5 != 0) return;
for (int i = 2; i < 63; i++) if (ct.minute() != i && ct.minute() % i  == 0) return;
txsInformation("<html><head></head><body><img src=':/images/egg.png'></body></html>");
Clone this wiki locally