Tagged Questions

2
votes
2answers
51 views

Testing for platform in elisp?

I'm sharing my emacs configuration files between a linux box and an OS X box. The config breaks however when I define a specific font for Emacs.app in the config which is then not …
1
vote
2answers
78 views

Guile and Emacs?

I'm learning Emacs Lisp and I came across this decade old post saying that at some point Guile (Scheme) will replace Emacs Lisp, or Emacs will be rewritten with Guile. http://san …
3
votes
1answer
24 views

Emacs Lisp: evaluate variable in alist

This is probably silly but I don't have enough Elisp knowledge to understand what is going on with respect to quoting and evaluation. Suppose I have this Elisp code: (add-to-list …
2
votes
3answers
101 views

Building and maintaining a database in Emacs?

I was reading the Simple Database section of Peter Siebel's book Practical Common Lisp with the idea of maintaining a small database of around 50,000 records. I thought doing this …
1
vote
3answers
50 views

Extracting URLs from an Emacs buffer?

How can I write an Emacs Lisp function to find all hrefs in an HTML file and extract all of the links? Input: <html> <a href="http://www.stackoverflow.com" _target="_blan …
5
votes
4answers
203 views

What does ^L in (Emacs Lisp) source code mean?

Several times I see ^L in (mostly Emacs Lisp) source codes that looks like are separators of larger logical groups. Is it their real purpose? And if so, how can I use them? Is ther …
3
votes
3answers
66 views

something confusing about define-key (and the issue of when to quote an argument)

It seems one is not supposed to quote KEYMAP when using define-key. (define-key org-remember-mode-map "\C-c\C-r" 'org-remember-kill) I'm confused because I think that all argume …
1
vote
4answers
113 views

Hidden features of Emacs Lisp?

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 document …
2
votes
1answer
49 views

Decoding HTML entities in Emacs/Elisp

Some online websites like to encode all their text through HTML entities, so instead of seeing a text like So I'm looking You get something like: &#83;&#111;&#32;&a …
1
vote
2answers
79 views

Emacs - Using “Select All” in Function (how to find the function bound to a key)

I'm trying to figure out Elisp, and I've hit a roadblock. I want a function that will Indent the entire file. Right now, I'm selecting the whole file (C-x h) and then doing M-x i …
1
vote
2answers
57 views

How does emacs url package handle authentication?

I have not seen a really good example on the web. How can I add authentication to a request like this: (defun login-show-posts () (interactive) (let ((url-request-method "GE …
0
votes
2answers
70 views

Define an emacs command that calls another emacs command (preserving interactive stuff)

How can I define an emacs command X that does something and then calls another emacs command Y and also copying the interactive interface of the command Y too? I want to define an …
0
votes
1answer
29 views

Modifying a custom defun to not conflict with Magit

I use the following smart-tab defun in my .emacs for either completion on a word or just to do a standard tab: (global-set-key [(tab)] 'smart-tab) (defun smart-tab () "This smar …
4
votes
3answers
110 views

Wrap selection in Open/Close Tag like TextMate?

In TextMate, one can use ctrl-shift-w to wrap text in an Open/Close tag and ctrl-shift-cmd-w to wrap each line in a region in Open/Close tags. How can I implement this same functi …
0
votes
2answers
47 views

Opening browser from emacs script?

I have the following emacs lisp snippet that will launch my browser from within emacs and open the specified pages. However when I run it as a script from a shell nothing happens. …

1 2 3 4 5 10 next
15 30 50 per page