What are some features of Emacs Lisp that you use to solve real problems?
- One feature per answer
- Give an example and short description of the feature, not just a link to documentation
- Label the feature using bold title as the first line
See also:
|
2
|
What are some features of Emacs Lisp that you use to solve real problems?
See also: |
||||
|
|
|
Perform an action at time time. Repeat the action every repeat seconds todochiku for example uses this to 'growl' a set number of minutes in the future. I use that feature to set a reminder say 20 minutes into the future. See function todochiku-in, and my blog post about using growl from emacs. The time can be specified in a flexible number of ways for example:
Change the nil to a number of seconds to have it repeat. Then when you want to disable:
|
|||
|
|
|
|
Advice. It lets you customize behavior without modifying the original source. Examples are:
What's nice about advice is that you don't have to touch the original code, so when you get a new version of Emacs or whatever package you're modifying, you don't have to re-merge your changes with the new code. The best way to learn advice is to go over the tutorial found in the advice package itself.
and search for The documentation found in that file is also very good (at least as good as the info pages). |
|||
|
|
|
|
|
| p.s. Know this doesn't really fit the bill, but I found this function the other day whilst looking into some timezone issues I was having with org-mode, and I just needed to share this amazingly pointless feature with someone. – Dominic Rodger Oct 21 at 5:25 |
|
|
emacs --script; # Emacs scripting Since this is a Community question, I'll start off with my new favorite thing. Writing scripts with Emacs Lisp instead of bash.
#!/usr/bin/emacs --script
(defun surf-news ()
(interactive)
(progn
(browse-url "http://news.ycombinator.com")
(browse-url "http://stackoverflow.com")
))
(surf-news)
|
|||
|
|