I would like to have a command to write dialogues. Something like
\newcommand\fdia{---~ }
\newcommand\dia{\\ \indent ---~ }
with usage:
\fdia Hi how are you?
\dia Fine and you?
\dia My god, this dialogue is so boring.
Is fine, except that it does not handle an answer with multiple lines the way I want: I want every line of an answer to be indented after the dash. This can be achived easily using
\begin{itemize}
\item[---~] Hi how are you?
\item[---~] Fine and you?
\item[---~] Still boring...
\end{itemize}
But I would like the command to be as quick to use as possible. Would there be by any chance, a solution to achieve what I want without using an environment?

enumitempackage you simple use\begin{itemize}[label={---}]\item– Sigur Jun 12 '15 at 12:48