Arash Esbati <[email protected]> writes: > I'm not familiar with the code, so you know best. But with the above, > can you make sure that you don't add a 3rd space if there are already > two? If this is the case, does something like this make more sense: > > (when (looking-at-p " ^[ ]") (insert " "))
(when (looking-at-p " [^ ]") (insert " "))
Best, Arash
