I've tried to write some new align rules for emacs and found this strange and inconsistent behaviour. Current buffer contents:
"some thing" like => this
hello => world
and => again
After typing M-xalign-regexp
RET[[:lower:]]+\(\s-+\)=>
RET result looks as desired:
"some thing" like => this
hello => world
and => again
But after C-uM-xalign-regexp
RET[[:lower:]]+\(\s-+\)=>
RET1
RET1
RETy
RET I get this instead:
"some thing" like => this
hello => world
and => again
The same (wrong) thing happens if I put this into align-rules-list
. How to fix this? I want to get the results like first.
Nice question.
When you run commands in Emacs, keep in mind that interactive forms are pre-processing arguments for you.
To see what the function finally receives, press C-x ESC ESC
In this case, you'll see in the former case:
(align-regexp 1 57 "\\(\\s-*\\)[[:lower:]]+\\(\\s-+\\)=>" 1 1 nil)
and this in the latter
(align-regexp 1 57 "[[:lower:]]+\\(\\s-+\\)=>" 1 1 t)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With