I have the following line in my Emacs init file.
(global-set-key (kbd "C-x a r") 'align-regexp)
Is there any way to hard-code in a particular regex so that I don't have to specify it every time?
|
I have the following line in my Emacs init file.
Is there any way to hard-code in a particular regex so that I don't have to specify it every time?
| |||
|
feedback
|
|
You could create your own command with the hard-coded regexp like so:
| |||
|
feedback
|
|
You could just bind that key-sequence to a keyboard-macro:
Create a keyboard macro with M-x Then insert the macro into your .emacs file with M-x | |||||
feedback
|