Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
555 views
in Technique[技术] by (71.8m points)

emacs - Inconsistent M-x align-regexp vs. C-u M-x align-regexp behaviour

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-regexpRET[[:lower:]]+(s-+)=>RET result looks as desired:

"some thing" like => this
             hello => world
             and => again

But after C-uM-xalign-regexpRET[[:lower:]]+(s-+)=>RET1RET1RETyRET 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.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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)

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...