0
votes
3answers
32 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 …
13
votes
7answers
975 views
Tips for Learning Elisp?
I have been using emacs for years now and I keep meaning to get a better understanding of elisp so I can customize the editor. One problem I have found is that it is a fairly daunting task to get …
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
…
20
votes
21answers
2k views
What’s in your .emacs?
I've switched computers a few times recently, and somewhere along the way I lost my .emacs. I'm trying to build it up again, but while I'm at it, I thought I'd pick up other good configurations that …
4
votes
1answer
121 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 …
1
vote
3answers
128 views
emacs defadvice on python-mode function
Hi! In python-mode, there is a function called py-execute-region which sends a highlighted region of code to the Python buffer for evaluation. After evaluation, the cursor is in the Python buffer, but …
1
vote
2answers
108 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 …
1
vote
4answers
112 views
debug elisp major mode
I'm developing a major mode for Emacs. Is there any way that I can set a break point in the source code when fontification happens, for example?
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 …
3
votes
2answers
83 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 …
5
votes
5answers
255 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 …
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 …
3
votes
3answers
538 views
Emacs 23, OS X, multi-tty and emacsclient
How can I get emacs 23 working nicely in multi-tty mode on OS X?
I've added (server-start) to my .emacs, and have discovered that running /Applications/Emacs.app/Contents/MacOS/bin/emacsclient -n …
4
votes
3answers
121 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 …
6
votes
9answers
1k views
How to maximize Emacs on Windows at startup?
This is driving me crazy: I simply want Emacs to maximize to whatever screen resolution I have at startup. Ideally I like a cross-platform (Windows & Linux) solution that works on any screen …
