Skip to content

Tag Archives: elisp

Keep track of scoping type in Emacs Lisp Buffers

Here is how: lexbind-mode

Some Essential Elisp Libraries

Here is a nice article on what sound like some nice support libraries for Elisp.

Calling functions with optional arguments from the mini-buffer

Surely one of the first things VIers want to know as do the rest of us is how to move forward N characters (or backward or whatever) from the mini-buffer in EMACS. Here is how it is done, using the universal argument. So to move forward 100 chars: C:u 100, C:f ADDENDUM:01/13/13 Thanks FUCO for [...]

Great post on Elisp hacking in Emacs

Here is a great post on Elisp hacking in Emacs. Cache here.

parenface-plus Package for Emacs

Here is an enhancement to parenface that adds support for the editor and REPL for Clojure, Jess, and Elisp.

Elisp REPL in Emacs

Nice Emacs setup for playing with Elisp, make sure to enable Paredit in the REPL and disable paredit-newline:

Geiser 0.2.1 ELPA Package

Here is an ELPA package for the Geiser library. The code is original from the author, I just packaged it up! Here is one way to install it: (require ‘package) (when (not (package-installed-p ‘geiser)) (url-copy-file "http://www.wisdomandwonder.com/wordpress/wp-content/uploads/2012/09/geiser-0.2.1.tar" "/tmp/geiser-0.2.1.tar" t) (package-install-file "/tmp/geiser-0.2.1.tar"))

Emacs Pretty Mode Plus ELPA Package

Here is an ELPA package for the pretty-mode.el library. The code functionality is original from the author, I just tweaked the pretty symbols and packaged it up! Here is one way to install it: (url-copy-file "http://www.wisdomandwonder.com/wordpress/wp-content/uploads/2012/09/pretty-mode-plus-1.0.tar" "/tmp/pretty-mode-plus-1.0.tar" t)   (require ‘package) (package-install-file "/tmp/pretty-mode-plus-1.0.tar") Addendum: 09/29/12 Fixed the package definition and now it is on Marmalade [...]

Hide Or Ignore Comments ELPA Package

Here is an ELPA package for the HideOrIgnoreComments software. The code is original from the author, I just packaged it up! Here is one way to install it: (url-copy-file "http://www.wisdomandwonder.com/wordpress/wp-content/uploads/2012/09/hide-comnt-40.tar" "/tmp/hide-comnt-40.tar" t)   (require ‘package) (package-install-file "/tmp/hide-comnt-40.tar") Update 09/29/12: Lincoln de Souza reported a fix, remove the quote nil from the package def and Marmalade [...]

Debugging an ELPA Package Install on Marmalade

To get started with ELPA packages I started small by trying to package up hide-comnt.el. Marmalade wouldn’t let me upload it though giving me a “520 Bad Gateway error”. Here is the package that I’m testing with. Here are the steps I have since followed to try to address it: Guys in #emacs said it [...]