GNU Emacs is an extensible, customizable text editor written primarily in Emacs Lisp.
4
votes
2answers
190 views
Emacs column alignment command
I'm making my first steps in ELisp programming and I want to know is there a better solution for this problem:
I have a file with two columns, that are separated by one or more spaces, ex.:
One 1
...
10
votes
1answer
335 views
Minor mode for blog writing in HTML
This is a collection of reasonably useful functions I put together for writing my blog.
(require 'htmlize)
(defvar blog-mode-map nil
"Keymap for blog minor mode")
(unless blog-mode-map
(let ...
11
votes
1answer
692 views
Emacs Etags Shortcut Functions
A few functions to let me manage TAGS files more easily. Typically, my projects contain at least one sub-folder. I got sick of manually updating, so I wrote this to help me update a single TAGS file ...