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 my .emacs i have the following function that transposes a line (defun move-line (n) "Move the current line up …
emacs elispRight now I write expressions in the *scratch* buffer and test them by evaluating with C-x C-e. I would really …
emacs elisp interpreterHow can I convert a symbol type into a string in Emacs lisp? I wasn't able to find a symbol-to-string …
string elisp symbolsIn GNU emacs, every time I hit Ctrl-x Ctrl-b to see all of my buffers, the window is split to …
emacs elispI want to customize environment while the specific package is installed properly. How to check whether some package is installed …
emacs elispI don't know if you would call it the canonical formulation, but to bind a local function I am advised …
binding elispI've been randomly getting the following error in emacs: Variable binding depth exceeds max-specpdl-size ...and I've been getting it at …
emacs elisp ropemacsWhile it is fun to customize, the Emacs has 100s of mode and there is lots of customization. I like …
emacs elisp dot-emacsI am trying to make my Emacs configuration file written for OS X work on Ubuntu. I have this line: (…
emacs elisp dot-emacsI would like to write a function which takes action if a give buffer name already exists. For example: (if (…
emacs elisp