1
vote
3answers
54 views
set text properties
I want to copy a text from one buffer to another with text properties. So I have
(with-current-buffer from-buffer
(setq text-to-copy (buffer-substring beg end)))
How can I in …
2
votes
1answer
60 views
Difference between symbol and variable name in emacs lisp
I'm wondering what the difference is between
(add-to-list 'flymake-allowed-file-name-masks
'("\\.py\\'" flymake-pylint-init))
and
(add-to-list flymake-allowed-file-n …
0
votes
1answer
33 views
defaultcontent.el - @@LISP tag - read-closest-sexp?
I started using defaultcontent.el to fill newly-created buffers with content.
Apparently this module is not widely used. I think there are 3 people including me and the author wh …
4
votes
3answers
97 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 …
1
vote
1answer
49 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
54 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
48 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) …
2
votes
3answers
71 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
72 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 …
2
votes
2answers
59 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 …
3
votes
2answers
42 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 …
1
vote
3answers
123 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
3answers
58 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
70 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 …
2
votes
1answer
54 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:
So &a …
