Does anybody know how to change the template for "inline math mode"? The default is when you press Ctrl + Shift + M is creates the following $ $ (two dollar signs a three spaces between them an places the cursor in the middle).
I would like to change it to $$ (two dollar signs an no spaces in between and place the cursor in the middle).
Any ideas?



hg clone http://hg.code.sf.net/p/texstudio/hg texstudio-hg, you edit the fileuiconfig.xml, search for a line that contains the wordmathmode, change in that line$ %| $to$%|$, thenmake; make install. Afterwards it's not possible to change the template anymore, as the XML file is "compiled" into a CPP file with the Qt resource compiler and later on compiled and linked into the final executable. – Elmar Zander Jan 30 '17 at 16:51