[Tex/LaTex] Nomencl: how to remove indentation in two columns multiline entries

indentationnomenclaturetwo-column

I'm using the nomencl package to write a two columns list of terms I frequently use in my thesis.
Everything looks fine except that I don't like that whenever the explanation of a term takes more than one line a small indentation is inserted.
What I have now is something that looks like:

MyTerm detailed explanation of my term.
   and here follows the second line.

I'd like to have is so that it looks like:

MyTerm detailed explanation of my term.
and here follows the second line.

Can someone please help me? I've tried to go through the documentation of the package but I couldn't really get much out of it!

Best Answer

In the following example I used print the nomenclature in onecolumn mode and in twocolumn mode. The mode twocolumn is generated in two ways. The first one uses the command \twocolumn and the second one the environment multicols*

\documentclass{article}
\usepackage{multicol}
\usepackage{nomencl}
\makenomenclature
\setlength{\nomlabelwidth}{.20\hsize}
\begin{document}
Text
\nomenclature{WYSIWYG}{Is an acronym for What You See Is What You Get. The term is used in computing to describe a system in which content (text and graphics)}
\printnomenclature
\begin{multicols*}{2}
\printnomenclature
\end{multicols*}
\clearpage
\twocolumn
\printnomenclature
\end{document}

After the correct compilation: pdflatex file.tex makeindex file.nlo -s nomencl.ist -o file.nls pdflatex file.tex

I get the correct output:

enter image description here

enter image description here