I am trying to use the following elisp function to align text with = :
(defun align-= () "Align lines by `=`" (interactive) (align-regexp (region-beginning) (region-end) "="))
And I'm trying to align the following text:
offer = stub('offer') user = stub('user')
But emacs returns the following error:
align-region: Marker does not point anywhere
What am I doing wrong?
thanks
simao
source share