0
votes
3answers
38 views
What do I pass to the switch-to-buffer arguement in my .emacs file?
I am getting an error in my .emacs file at the following line:
(switch-to-buffer *Completions*)
error: symbols value as variable is void
I did a describe-function on switch-to-buffer and found I …
3
votes
2answers
67 views
Elisp function returning mark instead of the right value
I'm writing a routine to test to see if point is at the practical end of line.
(defun end-of-line-p ()
"T if there is only \w* between point and end of line"
(interactive)
(save-excursion
…
4
votes
1answer
133 views
Using ido.el to find files in a git repository
I'm currently using textmate.el from @defunkt to emulate functionality of Textmate in Emacs.
Its equivalent of command-t to find a file in a project uses a git repository as your project (as Emacs …
3
votes
2answers
85 views
How to determine operating system in elisp?
Sorry if this has already been asked; however I don't seem to be able to find an answer anywhere grr.
How do I programmatically determine which os emacs is running under in elisp? I would like to run …
1
vote
1answer
52 views
function to call same shell command in dired
hi,
i'd like to be able to call the same shell command on the marked files in dired without the need for emacs to prompt the command input as the command will always be the same. in particular, the …
2
votes
2answers
159 views
Emacs, Zen-Coding mode, and Putty.
I use emacs via Putty and since Putty doesn't send certain key combinations to the remote console I generally need to re-bind them to other key combinations.
After installing the amazing Zen-Coding …
1
vote
3answers
65 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 insert the …
4
votes
1answer
75 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-name-masks
…
4
votes
3answers
124 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 have a region that is …
0
votes
1answer
37 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 who use it, because …
2
votes
1answer
74 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()
abbrev-insert(if …
5
votes
5answers
257 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 there a built-in Emacs …
1
vote
2answers
109 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 indent-region (which …
2
votes
3answers
84 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 of this, I want to …
1
vote
2answers
93 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_repo/stock_screener/. …
