I have a file that defines a bunch of commands for various variables that I use in other documents. Here's a small example of what it contains:
\newcommand{\varElevation}{\ensuremath{\alpha_{el}}}
\newcommand{\varAzimuth}{\ensuremath{\alpha_{az}}}
\newcommand{\varRoll}{\ensuremath{\phi}}
\newcommand{\varPitch}{\ensuremath{\theta}}
\newcommand{\varYaw}{\ensuremath{\psi}}
I use the input{...} command to insert the above file into the preambles of the documents that use those variables (thus making it very easy to change the symbols I use for the variables across multiple documents). Although the documents build correctly, TexMakerX highlights all calls to those custom commands as "unrecognized commands." Is there a way to get TexMakerX to parse the input file as well so that the syntax highlighting is correct?