vote up 1 vote down star

I'm trying to figure out Elisp, and I've hit a roadblock.

I want a function that will Indent the entire file. Right now, I'm selecting the whole file (C-x h) and then doing M-x indent-region (which does have a shortcut key).

I'd like to combine that in to a single keypress, but can't figure out how to do C-x h in a function.

Thanks

flag

2 Answers

vote up 6 vote down check

To find what a key does: C-h k, so for you:

C-h k C-x h

yields

mark-whole-buffer
link|flag
Thank you sir, C-h k is what I could not find – mabwi Oct 22 at 1:49
and C-h c returns just the function, without any documentation, and without opening a help buffer. And, C-h C-h is nice for these situations. – quodlibetor Oct 25 at 23:26
vote up 5 vote down

It is worth noting that you don't want to use the mark and point in non-interactive code; you want (indent-region (point-min) (point-max)), not (save-excursion (mark-whole-buffer) (call-interactively indent-region)), even though the effects are similar.

(Not to ruin your fun, but the whole sequence will look something like (global-set-key (kbd "C-M-r") (lambda () (interactive) (indent-region (point-min) (point-max))).)

link|flag
Why is your method preferred over marking the whole buffer / indent region? I'm not sure what the difference is. – mabwi Oct 22 at 12:26

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.