4
votes
3answers
71 views
How to write an Emacs function to wrap the marked region with specified text
I'm not too familiar with elisp, and am trying to learn. In emacs, I'd like to be able to do the following:
Mark via C-space
Go to where I want the the marking to end, so I hav …
0
votes
1answer
41 views
Emacs23 php-mode problem
I keep getting this error and similar errors while using php-mode on Emacs23 on Ubuntu:
Debugger entered--Lisp error: (void-function php-template-if-hook)
php-template-if-hook() …
4
votes
1answer
50 views
In emacs how does the “hyperlink” in the *Help* buffer work?
I'm trying to figure out how the "hyperlink" works in the *Help* buffer (so that I can implement something similar in the output of M-x compile). Here is a more detailed descriptio …
1
vote
3answers
69 views
In Emacs, how do I figure out which package is loading tramp?
I have a strange interaction with tramp and cygwin-mount (I think: http://stackoverflow.com/questions/1705802/emacs-tab-completion-of-file-name-appends-an-extra-i-cygwin). Because …
1
vote
2answers
62 views
Emacs: Tab completion of file name appends an extra i:\cygwin
I am facing some strange behavior with file-name completion in emacs. C-x C-f to find file opens up the minibuffer with i:/cygwin/home/rrajagop/StockScreener/working_copy/master_re …
1
vote
3answers
43 views
eval during emacs lisp macro expansion
How can I fix the simple macro foo in (elisp)Eval During Expansion?
None of the followings work:
(defmacro foo1 (a)
`(setq (eval ,a) t))
(defmacro foo2 (a)
`(setq ,(eval a) …
1
vote
3answers
115 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
2answers
41 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 …
5
votes
4answers
218 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 …
2
votes
3answers
121 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 …
2
votes
2answers
57 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
3answers
56 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 …
3
votes
3answers
68 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
134 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 …
1
vote
2answers
90 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 …
