Emacs Lisp is the extension language for the GNU Emacs text editor, and in fact, most of the functionality of Emacs is implemented using Emacs Lisp.
In emacs there is buffer-file-name that gives the full path to a file. But is there a way to get …
emacs elispIn vi[m] there is the ! command which lets me pipe text through a shell command -- like sort or …
emacs text-editor elispI'm writing an emacs major mode, which uses buffer-local variables to store some state: (defun foo-mode () "My nice major mode" (…
emacs elispThis is driving me crazy: I simply want Emacs to maximize to whatever screen resolution I have at startup. Ideally …
emacs elispWhat are some REPLs for Emacs Lisp? Is there only one that is within Emacs? Are there some that run …
emacs elisp read-eval-print-loopI want to learn the lisp language, since my editor is emacs, I prefer emacs lisp. Can anyone give me …
emacs elisp common-lispI would like to write an if statement that will do something base on whether a string is empty. For …
emacs elispWhat does this do? (add-hook 'compilation-mode-hook #'my-setup-compile-mode) ...and is it different than (add-hook 'compilation-mode-hook 'my-setup-compile-mode)
emacs elispI'm using emacs 24 and would like to install marmalade. I've tried adding the following to my ~/.emacs file, as per …
emacs elisp marmalade