Tagged Questions
_.emacs_ (_dot-emacs_ where the initial period causes problems) is the name of the main configuration file of the emacs text editor.
48
votes
28answers
9k 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 ...
20
votes
11answers
4k views
Emacs - Error when calling (server-start)
I am currently using GNU Emacs 23.0.93.1 in Windows Vista SP1. In my .emacs file I make a call to (server-start) and that is causing an error with the message The directory ~/.emacs.d/server is ...
20
votes
8answers
3k views
How can I emulate Vim's * search in GNU Emacs?
In Vim the * key in normal mode searches for the word under the cursor. In GNU Emacs the closest native equivalent would be:
C-s C-w
But that isn't quite the same. It opens up the incremental ...
20
votes
4answers
1k views
Tips for profiling misbehaving Emacs Lisp?
I customize Emacs a lot. Recently, I added something to my .emacs configuration that sporadically pegs my CPU at 100%, but I really don't know what it is.
If I press C-g a bunch of times, eventually ...
19
votes
1answer
3k views
How to have emacs auto-refresh all buffers when files have changed on disk
I have a non-emacs global search and replace function that causes my disk files to become more up-to-date than my emacs buffers (en masse). Is there any way to tell emacs to refresh all the buffers ...
19
votes
3answers
4k views
How do I byte-compile everything in my .emacs.d directory?
I have decided to check out Emacs, and I liked it very much. Now, I'm using the Emacs Starter Kit, which sort of provides better defaults and some nice customizations to default install of Emacs.
I ...
17
votes
1answer
324 views
Java Coding Style & Emacs cc-mode configuration
I'm using GNU/Emacs HEAD with the included cc-mode (c-version 5.32.2) on a GNU/Linux Debian machine.
I'm trying to define a custom style to manage the Code Conventions for the Java Programming ...
12
votes
7answers
3k views
Programmatically setting Emacs frame size
My emacs (on Windows) always launches with a set size, which is rather small, and if I resize it, it's not "remembered" at next start-up.
I've been playing with the following:
(set-frame-position ...
10
votes
1answer
318 views
When using two frames in emacs, how do I prevent the compilation buffer from showing up in both?
I work with two monitors, and often use emacs with two frames open; one for each monitor. each frame is split into two side-by-side windows, like so:
a | b <-- frame 1 in monitor 1
-------
c | ...
9
votes
4answers
648 views
Don't show uninteresting files in Emacs completion window
How do I prevent Emacs from showing me all the files I'm not interested in (such as ~ backup files, .pyc files, or .orig files) when I: C-x C-f TAB ?
It is working in one respect: if I know the file ...
8
votes
6answers
373 views
Is there a way to make changes to toggles in my .emacs file apply without re-starting Emacs?
I want to be able to make the changes to my .emacs file without having to reload Emacs.
I found three questions which sort of answer what I am asking (you can find them here, here and here), but the ...
8
votes
1answer
1k views
In Lisp, Avoid “Cannot open load file” when using require
I am working on a custom .emacs file that I will be able to use on several different computers. I would like to be able to load a mode if it exists on the system. If it does not exist I would like ...
8
votes
2answers
366 views
how to get focus-follows-mouse over buffers in emacs?
Suppose I have a source file open and I launch a shell. I can hit C-x o to switch between the two buffers. But how can I get it so that when I move the mouse the buffer under the mouse gets focus, ...
7
votes
3answers
965 views
Restore Emacs Session/Desktop
I've been searching for how to restore an emacs session, with no luck. I'm looking to restore all previously open buffers, some of which might contain erc, shells, directory listings, files, etc.
...
7
votes
2answers
854 views
Emacs navigation in new versions acts like Notepad
This is a bit difficult to explain, so please bear with me.
I am running emacs 23.0.60.2 (from CVS) in order to have truetype support. (in case anyone wonders why I'm running the bleeding edge). I'm ...
6
votes
4answers
188 views
When opening 2 files in emacs, how can I have them appear side-by-side?
Sometimes I launch emacs from the command line with 2 files, as follows:
emacs foo.txt bar.txt
This opens the emacs window, split vertically:
foo.txt
-------
bar.txt
How can I edit my .emacs ...
6
votes
1answer
1k 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 ...
6
votes
3answers
2k views
Disable Carbon Emacs scroll beep
I've been looking into adopting Carbon Emacs for use on my Mac, and the only stumbling block I've run into is the annoying scroll beep when you try to scroll past the end of the document. I've looked ...
5
votes
3answers
127 views
Is there a way to write a .emacs that will always stay upward compatible?
I have been using Emacs since version 18. Emacs Lisp isn't my routine programming language, but years ago I invested some time studying it to the point of creating a .emacs that's better (for me) than ...
5
votes
2answers
165 views
Emacs: Best-practice for lazy loading modes in .emacs?
Is there a best practice around lazily loading modes when encountering a relevant file extension?
At this point I have roughly 25 different Emacs modes installed, and startup has become slow. For ...
5
votes
1answer
550 views
How to turn on emacs auto-fill-mode only for code comments?
I have tried
(set (make-local-variable 'comment-auto-fill-only-comments) t)
and also
(auto-fill-mode 0)
Though amazingly, neither of those work after emacs is restarted.
I am using eschulte's ...
4
votes
1answer
169 views
Emacs font lock mode: provide a custom color instead of a face
On this page discussing font lock mode, an example is provided which highlights a custom pattern:
(add-hook 'c-mode-hook
(lambda ()
(font-lock-add-keywords nil
...
4
votes
2answers
239 views
How do I profile my emacs configuration?
My emacs configuration takes a very long time to load. How can I easily find the offending parts and optimize them?
4
votes
2answers
227 views
Emacs Case Sensitive Replace String
I just asked a related question (setq question) but it's distinctly different, so I decided to branch off with this question.
In my .emacs file, I define a key binding to the replace-string command:
...
4
votes
2answers
281 views
What is a simple way to combine two Emacs major modes, or to change an existing mode?
In Emacs, I'm working with a file that is a hybrid of two languages.
Question 1: Is there a simple way to write a major mode file that combines two major modes?
Details:
The language is called ...
4
votes
2answers
145 views
How to keep comments on variables set through “M-x customize” on emacs?
When I set variables through M-x customize, the values are stored in this big, auto-generated, alphabetically ordered list in my .emacs file.
The problem is I like to document why I chose a ...
4
votes
3answers
494 views
How do I find which .emacs file has been loaded?
How do I get emacs to tell me the location of the .emacs file it has loaded?
My situation is simply when I do sudo emacs, it loads up a very different .emacs file than the one in my home directory. ...
3
votes
2answers
66 views
How to get whitespace-mode enabled only for certain modes
I'm trying to get emacs whitespace-mode enabled automatically only in certain modes. According to the documentation, enabling global-whitespace-mode and setting the whitespace-global-modes variable ...
3
votes
3answers
114 views
how to delete region with [delete] key in emacs
I am using Emacs 23.3 on Mac OS X Lion. How can I delete the selected text region with simple key typing—something like delete or C-d? This works on windows without setting anything specific. ...
3
votes
5answers
415 views
Where I can find most popular emacs settings?
While it is fun to customize, the Emacs has 100s of mode and there is lots of customization. I like to find popular choices, so it makes my life easier and I can spend time productively. It could be ...
3
votes
4answers
275 views
OSX Emacs: unbind just the right alt?
I'm using emacsformacosx.com and would like to stop the Meta_R (right meta, or right option key) on my Apple keyboard from being an Emacs meta key.
The reason is that I want to be able to continue ...
3
votes
2answers
93 views
Emacs minibuffer killring
When switching files using the minibuffer (C-x C-f), I often use M-Backspace to delete words in the path. Emacs automatically places what I delete into the kill ring. This can be annoying, as sometime ...
3
votes
3answers
502 views
.emacs Edit to Always Start Emacs in Terminal Mode?
This is probably a simple question, but for the life of me I can't seem to find an answer to this question with a quick Google search.
I use emacs as my editor-of-choice, and since I'm doing a lot of ...
3
votes
1answer
211 views
can I change emacs' default compile command?
Emacs defaults to the command make -k when I run compile. However, I pretty much never think it's useful to have make continue after errors, so I always remove the -k flag. Is there a way to change ...
3
votes
1answer
237 views
Emacs folding mode error
I want to be able to use the emacs folding mode provided by folding.el from http://www.emacswiki.org/emacs/FoldingMode
I put the following in my .emacs file:
(setq load-path (cons (concat (getenv ...
3
votes
2answers
117 views
Where did dired-omit-toggle disappear in Emacs 23.2?
The challenge of upgrading from Emacs 21.2 to 23.2 continues... In my .emacs I have the very convenient:
(global-set-key (quote [f4]) (quote dired-omit-toggle))
It used to work since Emacs 18... ...
3
votes
5answers
2k views
How to gracefully exit SLIME and EMACS
I have a question regarding how to "gracefully exit SLIME", when I quit Emacs. Here is the relevant portion of my config file:
;; SLIME configuration
(setq inferior-lisp-program ...
3
votes
4answers
559 views
Default string for grep-find in emacs
I often use the command grep-find in emacs to search through my source files, but it's annying that it always finds matches in temporary files and backup files and so on. The default command for ...
3
votes
3answers
2k views
change emacs ruby-mode indent to 4 spaces
From a previous post I got Ruby mode working in emacs. This is working great.
http://stackoverflow.com/questions/2078079/setting-up-emacs-file-for-mac-ruby-development
Our company uses 4 spaces ...
3
votes
1answer
403 views
Disabling transient-mark-mode
In my .emacs file, I have
(setq transient-mark-mode nil)
and yet transient-mark-mode is activated when I start up emacs. Calling transient-mark-mode gives the message 'transient-mark-mode ...
3
votes
1answer
331 views
try catch block indentation in Emacs
I'm using the bsd style of indentation in emacs & I'd like to modify it a bit. The related portion of my .emacs file is below. When I write a function with try catch blocks the braces are ...
2
votes
3answers
72 views
emacs - set mark on edit location
I want emacs to add last edit location to the mark ring, so I can jump back to previous edit locations.
Ideally this would only mark one edit location per line. When I edit another line, the last ...
2
votes
1answer
97 views
Unicode problems with Emacs EMMS and mp3info/mplayer
I have a problem with my Emacs-emms configuration. It seems that the Unicode special characters in the songs ID3tags appear with their unicode not rendered. For example, Trentemøller (music band) ...
2
votes
1answer
79 views
setq of case-sensitivity in .emacs has no effect
I have a lot of custom stuff in my .emacs file: fonts, colors, window sizing, key bindings, etc. All of it works.
Then at the end, I just added a: (setq case-fold-search nil). It's a variable that ...
2
votes
1answer
231 views
How can I access directory-local variables in my major mode hooks?
I have defined a .dir-locals.el file with the following content:
((python-mode . ((cr/virtualenv-name . "saas"))))
In my .emacs I have the following function to retrieve this value and provide a ...
2
votes
2answers
495 views
Some emacs desktop-save questions: how to change it to save in ~/.emacs.d/.emacs.desktop
I have this set in my init.el
(desktop-save-mode 1)
This works great, only I was wondering:
how can I change it to save the .emacs.desktop files into ~/.emacs.d instead of ~/
how can I stop it ...
2
votes
1answer
243 views
Making emacs always insert (and backspace) 4 space tabs?
I thought I had this set fine, however now occasionally emacs will go and insert an 8 character tab, or a 6 or 5 character tab....
Maybe this is caused by the document (this has occurred in a large ...
2
votes
2answers
144 views
Why does emacs complain about void-variable displayed-year in my dotemacs?
I'm trying to implement the solar terms in my .emacs so my "holidays" will display the time when the solar longitude crosses each multiple of 15 degrees. Here is the relevant snipplet.
(defun ...
2
votes
3answers
144 views
Why doesn't my Emacs regular expression with ^ to match the start of a line work?
I am trying to set up .emacs so that any file which begins with the letters makefile sets it to makefile mode. E.g. makefile-something should be in makefile mode.
This doesn't work:
(setq ...
2
votes
1answer
384 views
How do I set the colour of brackets/braces/parentheses in Emacs?
I'd like to specify the colour of {}, () and [] in a custom colour theme. Is this possible?
Update: Here's the source. Please note the in-development status of this theme; it is unsafe for use both ...