Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- (defun info-elisp ()
- "Fire up the elisp manual. Activates the current manual if the
- buffer already exists."
- (interactive)
- (if-let ((name "*info elisp*")
- (manual (get-buffer name)))
- (switch-to-buffer manual)
- (info "elisp")
- (rename-buffer name)))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement