4
votes
3answers
78 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 …
8
votes
2answers
496 views
Emacs lisp mode for Go?
Is there a suitable Emacs lisp mode for Go? C mode doesn't work without semicolons. The best I have found is the JavaScript mode by Karl Landstrom, since JavaScript also doesn't re …
0
votes
2answers
62 views
Emacs Setting which-function-mode
I would like to have which-function-mode on by default when I open up Emacs. I've added the following lines to my .emacs file.
(setq which-func-mode t)
(setq which-function-mo …
4
votes
1answer
86 views
Convert Emacs macro into Elisp
Hi,
Is there a way to convert an emacs macro into elisp, not like what M-x insert-kbd-macro does, the actual activity becoming elisp statements.
Thanks for your help.
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
116 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 …
1
vote
1answer
32 views
Get local cvs comment history when committing file/s in emacs
Hi,
I often commit files with similar cvs comment but not in a single operation. I would like to able to bring up previous comments I've used in a previous commit when I am in th …
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
124 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
1answer
47 views
Emacs C-h c doesn’t seem to work for chords 3 combinations long?
Hi,
I'm trying to use C-h c in emacs to figure out what a key combination is bound to. The combination is C-u C-c C-q, which realigns tags in org-mode. However, Emacs just tries to …
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 …
1
vote
4answers
135 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 …
0
votes
1answer
40 views
How do i change the color of the font for the current directory in M-x term?
Normally when i need to change the color of a certain element in emacs, i would do a M-x describe-face which will eventually bring up a customize buffer to change it. In the emacs …
1
vote
2answers
64 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 …
4
votes
3answers
132 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 …
