_.emacs_ (_dot-emacs_ where the initial period causes problems) is the name of the main configuration file of the emacs text editor.

learn more… | top users | synonyms (1)

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 ...
36
votes
8answers
7k 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 ...
18
votes
6answers
5k 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 ...
9
votes
1answer
868 views

Emacs 24 Package System Initialization Problems

It seems to me that the new Package system that is built-in on Emacs 24 has some flaws when it comes to properly loading and initializing the installed packages. Recently, I upgraded to Emacs 24.1.1 ...
7
votes
3answers
3k views

PATH and exec-path set, but emacs does not find executable

My .emacs contains (setenv "PATH" (concat ".:/usr/texbin:/opt/local/bin" (getenv "PATH"))) (setq exec-path (append exec-path '(".:/usr/texbin:/opt/local/bin"))) (add-to-list 'load-path ...
24
votes
8answers
5k 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 ...
9
votes
3answers
12k views

Setting Emacs 24 color theme from .emacs

I have the following code in my .emacs: (if (null window-system) (progn (require 'color-theme) (color-theme-initialize) (color-theme-simple-1))) When I open Emacs on the console, I ...
11
votes
3answers
2k 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. ...
8
votes
4answers
3k 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 ...
3
votes
1answer
399 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 ...
63
votes
1answer
8k 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 ...
27
votes
4answers
2k 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 ...
5
votes
2answers
486 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
4answers
2k 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 ...
8
votes
2answers
705 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, ...
6
votes
2answers
316 views

Delete a word without adding it to the kill-ring in Emacs

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 ...
5
votes
1answer
160 views

Emacs auto-minor-mode based on extension

I found this question somewhat on the topic, but is there a way [in emacs] to set a minor mode (or a list thereof) based on extension? For example, it's pretty easy to find out that major modes can be ...
5
votes
2answers
396 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 ...
5
votes
1answer
450 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 ...
5
votes
2answers
900 views

How to execute emacs grep-find link in the same window?

When I use grep-find it opens another window (area in the frame) with a list of results that I can select. When I select one it opens the target file in a different window than grep-find is in. How ...
3
votes
1answer
166 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 ...
3
votes
2answers
964 views

Emacs Setting which-function-mode

I would like to have which-function-mode on by default when I open up Emacs. I've added the following lines to my .emacs file. (setq which-func-mode t) (setq which-function-mode t) When I open ...
2
votes
2answers
3k views

what is custom-set-variables and faces in my .emacs?

this is in my .emacs can I mess with it or not? (custom-set-variables ;; custom-set-variables was added by Custom. ;; If you edit it by hand, you could mess it up, so be careful. ;; Your init ...
1
vote
2answers
2k views

Reload .emacs for all active buffers

A question already has been asked how to reload a .emacs file after changing it. The proposed solutions were to use M-x load-file or M-x eval-region RET on the changed region. Neither of these ...
1
vote
2answers
632 views

Alias to make emacs open a file in a new buffer (NOT frame) and be activated/come to front?

What I have so far is alias em="open -a /Applications/Emacs.app "$@" && osascript -e 'tell application "Emacs.app" to activate'" But I am stumped. With that code, em file.txt will ...
1
vote
1answer
2k views

Setting tab size in Emacs

I'm using Emacs as an editor. I want to set the tab size to four spaces. In my .emacs file I have the following: (setq default-tab-width 4) I've also tried: (set-default tab-width 4) Either ...
1
vote
2answers
743 views

gdb within emacs on Windows

I'm running Emacs 22.3 in Windows. Earlier today I had gdb working within Emacs just fine. I was installing QT4 and during the installation it asked me to uninstall MSYS which I quickly clicked ...
0
votes
1answer
557 views

Bazaar: how put files from different locations in one repository?

I'm new to bazaar and would like to give it a try by storing my Emacs configuration files in one repository. These files consist of a .emacs file in my home directory (on unixish systems) and a ...