GNU Emacs is an extensible, customizable, self-documenting text editor written in C with Emacs Lisp as its extension language.
6
votes
0answers
33 views
In emacs markdown-mode making the link live and URL invisible in inline links
A few years ago I modified version 1.8.1 of Jason Blevins's markdown-mode for Emacs so that when showing inline links the URL is hidden, and so that you can follow the link simply by hitting Enter. If ...
2
votes
1answer
37 views
Find relative filenames recursively in Emacs
I have a set of directories. For each directory I have a set of relative file names. I would like to select any of these relative filenames using completion, and then later reconstruct the absolute ...
4
votes
1answer
56 views
Refactoring elisp code that generates files
I wrote a simple emacs module that generates standard templates that I use for my blog's static site generator.
...
1
vote
1answer
157 views
How do I avoid eval in elisp?
I have wrote a simple util to submit my code to a online judge site, how to avoid the evil function?
...
1
vote
1answer
89 views
A small emacs-lisp snippet for opening a register in another window
I'd like to get some feedback on whether this is idiomatic elisp, whether it's any good, and any small modifications that would be useful. Thanks
...
4
votes
2answers
276 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.:
...
10
votes
1answer
352 views
Minor mode for blog writing in HTML
This is a collection of reasonably useful functions I put together for writing my blog.
...
14
votes
1answer
898 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 ...