I've made a new environment to do commented lists, an adapted itemize without symbols:
\documentclass{report}
\usepackage{mathtools}
\newenvironment{clist}
{\newcommand\com[2][1cm]{\par{\small\rule{##1}{0pt}\parbox{\linewidth-##1}{##2}}\par}\renewcommand\labelitemi{}\begin{itemize}}
{\end{itemize}}
\begin{document}
\begin{clist}
\item First thing
\item Second thing
\com{This thing was good!}
\item Last thing
\end{clist}
\end{document}
i.e. \small comment paragraphs with default 1cm indent, optional \com param sets indent size.
My question is - How can I make \com like \item in not needing brackets? So that I can write the comment paragraphs
\com Like this?
I don't really care if there's a package that can do this easily; I'd like to be able to customize this sort of thing in various ways, and understand how to do so, not necessarily with itemize or lists if some other way's easier. Or maybe it's just too tricky to be worth bothering about.

\documentclasscommand, include any necessary packages and be as small as possible to demonstrate your problem. – Mar 26 '18 at 08:46\itemnever needs to grab its argument, it just affects the paragraph settings) so if you know you just want to grab to the end of the first paragraph, or grab to the next\itemor\endit's possible, but detecting the next\endis a pain as you need to step over nested\begin..\end"by hand" so it's not impossible (I expect that code doing it is on this site already) but it is rather fragile and TeX doesn't help make such an interface. – David Carlisle Mar 26 '18 at 11:52