Suppose I have this textual code:
foo(a, b, c)
I want to typeset it such that in the result .pdf file it appears this way:
foo(a,
b,
c)
In addition, ChatGPT provides a "solution" that looks like
a,
foo(b,)
c
which is unacceptable.
... and the culprit code is:
$\textsc{Enlarge-Finger-Array-With-Empty-Range}(
\begin{array}{@{}l@{}}
L, \\
L.F.size + 2, \\
\texttt{beforeFingerIndex}, \\
1, \\
1
\end{array}
)$ \\
How can I achieve this?

