GNU Emacs is an extensible, customizable text editor written primarily in Emacs Lisp.
36
votes
6answers
4k views
Globally override key binding in Emacs
How can I set a key binding that globally overrides and takes precedence over all other bindings for that key? I want to override all major/minor mode maps and make sure my binding is always in ...
238
votes
37answers
37k views
Why should I use an IDE? [closed]
In another question, Mark speaks highly of IDEs, saying "some people still just dont know "why" they should use one...". As someone who uses vim for programming, and works in an environment where ...
70
votes
11answers
7k 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 ...
122
votes
14answers
31k views
Using Emacs as an IDE
Currently my workflow with Emacs when I am coding in C or C++ involves three windows. The largest on the right contains the file I am working with. The left is split into two, the bottom being a ...
80
votes
6answers
16k views
Using Emacs to recursively find and replace in text files not already open
As a follow-up to my question at http://stackoverflow.com/questions/269812/how-to-quickly-get-started-at-using-and-learning-emacs It's trying to find out how to do something like this which should be ...
43
votes
9answers
18k views
Where can I find my .emacs file for Emacs running on Windows?
I tried looking for the .emacs file for my Windows install for Emacs but could not find it. Does it have the same filename under Windows as in Unix? Do I have to create it myself? If so, under what ...
10
votes
2answers
2k views
Pin Emacs buffers to windows (for cscope)
For my day job, I live in Emacs. Utterly. I also have become pretty dependent on CScope to help me find things in the code.
Normally, I have 2 windows in a split (C-x 3):
And I use the right ...
7
votes
5answers
2k views
Binding M-<up> / M-<down> in emacs 23.1.1
I'm trying to put in a feature that I miss from eclipse, where Alt+[Up/Down] transposes the lines up or down, but can not for the life of me figure out how to assign to these keys properly. I am using ...
57
votes
10answers
37k views
Emacs on Mac OS X Leopard key bindings
I'm a Mac user and I've decided to learn Emacs. I've read that to reduce hand strain and improve accuracy the CTRL and CAPS LOCK keys should be swapped. How do I do this in Leopard?
Also, in Terminal ...
39
votes
8answers
15k views
How to achieve code folding effects in Emacs?
Whats the best way to do achieve something like code folding, or the type of cycling that org-mode uses. What would be the best solution in elisp to create this type of behavior?
EDIT:
I'm sorry I ...
24
votes
6answers
10k views
code browsing, refactoring, auto completion in Emacs
I recently switched to Emacs and still finding my way through it.
I code in C++ and was wondering what tools out there extend Emacs to support code browsing (finding a symbol etc), refactoring and ...
12
votes
3answers
732 views
Emacs shell scripts - how to put initial options into the script?
Inspired by Stack Overflow question Idomatic batch processing of text in Emacs? I tried out an Emacs shell script with the following headline:
#!/usr/bin/emacs --script
I put some ...
43
votes
4answers
9k views
Setting Emacs Split to Horizontal
A lot of Emacs functions automatically split the screen. However, they all do so vertically, (ie; they make two windows, one on top of the other). Is there any way to make them all split horizontally ...
23
votes
8answers
9k views
How can I run Cygwin Bash Shell from within Emacs?
I am running GNU Emacs on Windows so entering:
M-x shell
launches the Windows command-line DOS shell. However, I would like to instead be able to run the Cygwin Bash Shell (or any other non-Windows ...
30
votes
3answers
6k views
How to Change size of split screen emacs windows?
So I have emacs split horizontally - on top I'm editting Perl code, the bottom is the shell. By default emacs makes the two windows equal in size, but I'd like the shell buffer smaller (maybe half the ...
19
votes
7answers
3k views
How do I do closures in Emacs Lisp?
I'm trying to create a function on the fly that would return one constant value.
In JavaScript and other modern imperative languages I would use closures:
function id(a) {
return function() ...
18
votes
6answers
2k views
Emacs: help me understand file/buffer management
I've been using emacs for all of my text editing needs for the past three years now. When I'm in a single file, working on code or whatnot, I'm fairly efficient. With two files, I can "C-x b RET" ...
18
votes
6answers
4k views
How to tell emacs to open .h file in C++ mode?
What lines should I add to my _emacs (on Windows) file to have it open .h files in C++ mode? The default is C mode.
Thanks,
kris
4
votes
3answers
2k views
Using tramp with EmacsW32 and cygwin, possible?
I have some trouble setting up Tramp with EmacsW32 and cygwin. I have configured emacs to use cygwin as shell using w32shell. I also set the HOME enviromental variable to c:/cygwin/home/myusername
...
4
votes
3answers
571 views
Emacs workflow to edit Bash scripts while they run
Bash can give unexpected results if one edits a script while the script is running. But it would often be very convenient to be able to edit a temporary copy of a script that I run within a shell, but ...
4
votes
7answers
773 views
How can I more easily switch between buffers in Emacs?
I've recently started using emacs and I'm enjoying using it for the most part. The only thing I'm not enjoying, is switching between buffers. I often have a few buffers open and I've grown tired of ...
68
votes
4answers
13k views
ropemacs USAGE tutorial
There are many sites with instructions on installing ropemacs, but so far I couldn't find any with instructions on how to use it after it's already installed. I have it installed, or at least it seems ...
76
votes
10answers
34k views
How do I set the size of Emacs' window?
I'm trying to detect the size of the screen I'm starting emacs on, and adjust the size and position the window it is starting in (I guess that's the frame in emacs-speak) accordingly. I'm trying to ...
70
votes
6answers
16k views
Open a file with su/sudo inside Emacs
Suppose I want to open a file in an existing Emacs session using su or sudo, without dropping down to a shell and doing sudoedit or sudo emacs. One way to do this is
(require 'tramp)
C-c C-f ...
37
votes
13answers
9k views
How can I make Emacs start-up faster?
I use Emacs v. 22 (the console version, either remotely with PuTTY or locally with Konsole) as my primary text editor on Linux. It takes a while to load up each time I start it though, probably almost ...
11
votes
3answers
4k views
Emacs (Cocoa Emacs) vs Aquamacs for running Clojure on Mac OS X
I used Aquamacs so far, and I need to install and run Clojure using SLIME. I googled to get some way to use Clojure on SLIME of Aquamacs, but without success.
Questions
Is it possible to install ...
38
votes
7answers
8k views
Emacs, switch to previous window
In Emacs, C-x o takes me to the next window.
What keyboard macro takes me to the previous window in Emacs?
20
votes
8answers
20k views
19
votes
1answer
2k views
eval-after-load vs. mode hook
Is there a difference between setting things for a mode using eval-after-load and using the mode hook?
I've seen some code where define-key is used inside a major mode hook, and some other code where ...
12
votes
4answers
2k views
How can I use Emacs Tramp to double hop ssh?
My campus only lets ssh access through a gateway server. So to access the cluster I am coding on I have to ssh to the gateway and then ssh to the machine I am working on. The connection is very slow ...
10
votes
8answers
3k views
Emacs is ignoring my path when it runs a compile command
I'm trying to get a compile command (rake cucumber) to run with a specific ruby version on my Mac OS X system, I use rvm to do this currently in the terminal. My ~/.MacOSX/environment.plist has the ...
22
votes
3answers
2k views
Git slows down Emacs to Death - How to Fix this?
Opening a file (either by typing Ctrl-x f, AKA Find File) or by typing f on that file in Dired mode), is painfully slow in working directories that have a .git subdirectory.
Even the simplest file ...
22
votes
4answers
2k views
Smart home in Emacs
Can you have smart behavior for the home key in Emacs? By smart I mean that instead of going to the character number 0, it should go to the first non-blank character, and go to 0 on a second pressing, ...
12
votes
2answers
2k views
How do I access the contents of the current region in Emacs Lisp?
I want to access the contents of the current region as a string within a function. For example:
(concat "stringa" (get-region-as-string) "stringb")
Thanks
Ed
4
votes
1answer
819 views
Send “C-(” to Emacs in VT100/xterm terminal (Mac OS X's Terminal)?
Is it possible in any way to send the key "C-(" to Emacs over a VT100/xterm terminal (Mac OS X Terminal)? Is there an escape sequence that could be sent to achieve the equivalent?
I suspect the ...
3
votes
2answers
512 views
automatically disable a global minor mode for a specific major mode
I have centered-cursor-mode activated globaly, like this:
(require 'centered-cursor-mode)
(global-centered-cursor-mode 1)
It works fine, but there are some major modes where I would like to disable ...
6
votes
3answers
783 views
Idomatic batch processing of text in Emacs?
In Python, you might do something like
fout = open('out','w')
fin = open('in')
for line in fin:
fout.write(process(line)+"\n")
fin.close()
fout.close()
(I think it would be similar in many ...
68
votes
15answers
8k views
What specific productivity gains do Vim/Emacs provide over GUI text editors?
This isn't meant as a troll or flamebait or anything like that. I've been using Vim as my console-editor of choice for a couple months now (for editing configuration files while in my terminal), but ...
131
votes
13answers
62k views
How to set the font size in Emacs?
I was wondering how does one set the font size in emacs. I want to save this in the .emacs file but I don't know how to set the font.
87
votes
3answers
17k views
How do I control how Emacs makes backup files?
Emacs puts backup files named foo~ everywhere and I don't like having to remember to delete them. Also, if I edit a file that has a hard link somewhere else in the file system, the hard link points ...
26
votes
6answers
15k views
Emacs - tab-completion of local Python variables
Is there a good emacs mode that will allow tab-completion of local python variables? I set up ipython.el but it will only tab-complete things in the scope of the interpreter. I'm looking for something ...
39
votes
6answers
10k views
Bash autocompletion in Emacs shell-mode
In the GNOME Terminal, Bash does smart auto-completion. For example
apt-get in<TAB>
becomes
apt-get install
In Emacs shell-mode, this auto-completion doesn't work, even after I explicitly ...
31
votes
4answers
6k views
How to write an emacs mode for a new language?
I would like to write an Emacs major mode for a 4GL.
Can someone show me a tutorial?
As far as I googled I was able to find only this broken:
link http://two-wugs.net/emacs/mode-tutorial.html
20
votes
5answers
5k views
Open file via SSH and Sudo with Emacs
I want to open a file inside Emacs which is located on a remote server, with sudo powers on the server. I can open local files with sudo via Tramp like this:
C-x C-f /sudo::/home/user/file
But I ...
18
votes
3answers
1k views
Why does emacs create temporary symbolic links for modified files?
When I modify a buffer, Emacs automatically creates a temporary symlink in the same directory as the file being edited (e.g. foo.c):
.#foo.c -> user@host.12345:1296583136
where '12345' is Emacs' ...
14
votes
1answer
5k views
Emacs behind http proxy
Emacs is able to access the internet with packages such as url.el or the W3 web browser.
Also, the Emacs Lisp Package Archive is heavily dependant on package url.el.
Now, how do I configure Emacs to ...
13
votes
1answer
3k views
Saving Window Configurations in Emacs
I'm wondering if there's a way to save window configurations across emacs sessions. I know desktop-save is fantastic for preserving buffers and whatnot and the emacs manual demonstrates storing a ...
11
votes
3answers
3k views
In Emacs, how to insert file name in shell-command?
I use shell-command a lots (default binded to M-!), but often I'm doing stuff to the buffer I'm currently editing. Instead of typing the buffer name (and no filename completion is available in ...
2
votes
6answers
3k views
Code formatter / beautifier for C on Linux for Emacs user
I'm a Linux user looking for a code beautifier which will take files containing C code and format them to specification. Specifically, I'm looking to:
Change all indentations to be 8 spaces
Format ...
24
votes
9answers
5k views
Emacs: how to delete text without kill ring?
I'd like to just delete some text so I can yank some other text instead of it. How can I do that? C-w cuts the selected text to kill ring and I end up without the text I wanted to yank.
Also, is it ...
