Tagged Questions
Emacs Lisp is the extension language for the GNU Emacs text editor, and in fact, most of the functionality of Emacs is implemented using Emacs Lisp. Users generally customize Emacs' behavior by adding Emacs Lisp statements to their .emacs, or writing separate packages. A guide to learning Emacs Lisp for non-programmers can be found here. Emacs Lisp differs from most other lisps in two main ways: It has special features for scanning and parsing text,
51
votes
8answers
22k 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 ...
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 ...
39
votes
10answers
4k 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 ...
28
votes
8answers
8k views
Is there a (repeat-last-command) in Emacs?
Frequently, I've dug into apropos and docs looking for something like the following only to give up to get back to the task at hand:
(repeat-last-command)
do the last C- or M- command I just ...
25
votes
3answers
2k views
How can I get Emacs to revert all unchanged buffers when switching branches in git?
Often, when I switch branches in git, if the files are open in emacs, then emacs asks if I want to revert them (as it thinks they've changed on disk) even though the contents are identical.
Firstly ...
23
votes
3answers
4k views
Emacs lisp mode for Go?
Is there a suitable Emacs lisp mode for Go? C mode doesn't work without semicolons. The best I have found is the JavaScript mode by Karl Landstrom, since JavaScript also doesn't require semicolons.
21
votes
8answers
938 views
How to live with Emacs Lisp dynamic scoping?
I've learned Clojure previously and really like the language. I also love Emacs and have hacked some simple stuff with Emacs Lisp. There is one thing which prevents me mentally from doing anything ...
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 ...
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 ...
19
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 ...
18
votes
8answers
943 views
How to go about learning Common Lisp and Emacs Lisp?
The last few months I've been using Emacs extensively as my main development environment and I've now come to a point at which I'd like to learn it's own Emacs Lisp to write my own little stuff for ...
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 ...
17
votes
2answers
384 views
What does the double minus (--) convention in function names mean in Emacs Lisp
I've been reading through a number of Emacs Lisp packages and have come across the convention of some functions being declared with -- after the library prefix, e.g.:
(defun eproject--combine-regexps ...
17
votes
7answers
8k 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 ...
15
votes
2answers
838 views
Emacs :TODO indicator at left side
I want to have sort of indiacator at left side of the line wherever I have in the source code
#TODO: some comment
//TODO: some comments
The indicator could be a just mark and I already enabled ...
15
votes
6answers
657 views
How can I spot subtle Lisp syntax mistakes?
I'm a newbie playing around with Lisp (actually, Emacs Lisp). It's a lot of fun, except when I seem to run into the same syntax mistakes again and again.
For instance, here's something I've ...
15
votes
12answers
5k 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 ...
15
votes
3answers
3k views
In Emacs Lisp, how do I check if a variable is defined?
In Emacs Lisp, how do I check if a variable is defined?
15
votes
6answers
2k views
How to invoke an interactive elisp interpreter in Emacs?
Right now I write expressions in the *scratch* buffer and test them by evaluating with C-x C-e. I would really appreciate having an interactive interpreter like SLIME or irb, in which I could test ...
14
votes
5answers
2k 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() ...
13
votes
5answers
413 views
Emacs: adding 1 to every number made of 2 digits inside a marked region
Imagine I've got the following in a text file opened under Emacs:
some 34
word 30
another 38
thing 59
to 39
say 10
here 47
and I want to turn into this, adding 1 to every number ...
13
votes
2answers
3k views
How can I check if a file exists using emacs lisp?
I would like emacs to mark files that are generated as read-only when they're opened. The part of the puzzle that I'm missing is how to check if a file "exists". I currently have the following:
;;
...
12
votes
5answers
1k views
How do I create an empty file in emacs?
How can I create an empty file from emacs, ideally from within a dired buffer?
For example, I've just opened a Python module in dired mode, created a new directory, opened that in dired, and now need ...
12
votes
7answers
759 views
Lisp Community - Quality tutorials/resources
As many other people interested in learning Lisp, I feel the resources available are not the best for beginners and eventually prevent many new people from learning it. Do you feel it could be created ...
12
votes
3answers
3k views
Filtering text through a shell command in Emacs
In vi[m] there is the ! command which lets me pipe text through a shell command -- like sort or indent -- and get the filtered text back into the buffer. Is there an equivalent in emacs?
Thanks,
...
11
votes
5answers
526 views
Hide Emacs echo area during inactivity
The echo area is the line at the bottom of Emacs below the mode line:
~ ~
| |
...
11
votes
5answers
916 views
How to preserve clipboard content in Emacs on Windows?
This is scenario that I ran into a few times:
I copy some text from other program. Go to Emacs and did some editing before I paste/yank the text in. C-y to yank and voila ... not the text I intended ...
10
votes
2answers
266 views
Learning Elisp - what are the highest quality libraries to read source code?
When learning a new programming language, "read source code" is a common advice received by the experts. However, with such a huge system like emacs, build over decades by many people, it is not so ...
10
votes
6answers
539 views
How viable is emacs LISP aside from editing emacs?
I'm in my second year of my CS major, and I've only had courses in C (first course and then a polymorphic data structures course), C++ (OOP focus), MIPS assembly, and a compiler course. I worked in ...
10
votes
3answers
872 views
Emacs Org-mode: How to include properties in diary anniversaries?
I am trying to have the "Birthday" and "Name" properties of an Org-mode entry added to the agenda automatically:
* John
:PROPERTIES:
:Name: John
:Birthday: (5 4 1900)
:END:
I found a way to ...
10
votes
3answers
1k 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 ...
10
votes
1answer
403 views
Convert Emacs macro into Elisp
Is there a way to convert an emacs macro into elisp, not like what M-x insert-kbd-macro does, the actual activity becoming elisp statements.
Thanks for your help.
10
votes
6answers
2k views
Guile and Emacs?
I'm learning Emacs Lisp and I came across this decade old post saying that at some point Guile (Scheme) will replace Emacs Lisp, or Emacs will be rewritten with Guile.
...
10
votes
3answers
2k views
How to force Emacs not to display buffer in a specific window?
My windows configuration looks like this:
+----------+-----------+
| | |
| | |
| | |
| | |
| ...
10
votes
2answers
668 views
What is the difference between `global-set-key` and `define-key global-map` in Emacs
If you had two snippets:
(global-set-key "\C-d" delete-char)
and
(define-key global-map "\C-d" delete-char)
Is there a difference between the two? If so, when would you use one over the other?
10
votes
7answers
664 views
How do I get basic App<->Emacs integration?
There are a bunch of applications out there that integrate Emacs with external processes. GDB is one that comes to mind. I can control GDB from emacs and then get feedback on the screen.
I'd like to ...
9
votes
1answer
156 views
answering/asking SO questions from emacs.?
Right now I am using gnus to read SO questions by subscribing interested tags from gwene.
I can only see/read the Question and not the answers.
Is there a plugin to answer/ask SO question. Of course ...
9
votes
3answers
436 views
In Lisp (Clojure, Emacs Lisp), what is the difference between list and quote?
From reading introductory material on Lisp, I now consider the following to be identical:
(list 1 2 3)
'(1 2 3)
However, judging from problems I face when using the quoted form in both Clojure and ...
9
votes
1answer
595 views
Setting auto-mode-alist in emacs
I notice that the current auto-mode-alist entries all end with a single quote, for example
("\\.java\\'" . java-mode)
What is the purpose of the single quote. I would have expected to see
...
9
votes
3answers
1k views
Closing all other buffers in Emacs
How do I close all but the current buffer in Emacs? Similar to "Close other tabs" feature in modern web browsers?
9
votes
1answer
1k views
Is there a rails3-compatible emacs mode yet?
Rinari hasn't been updated in the last few months, and there doesn't seem to be such progress made in the branches on github.
I've never tried emacs-rails, but from what I can see, the same applies.
...
9
votes
4answers
307 views
How to get a list of last closed files in emacs?
Sometimes I got itchy finger and kill some buffer that I meant to bury instead. The problem is, I use tramp to edit files from multiple machines, and those file names get long and nasty and just in ...
9
votes
2answers
445 views
Is there any way to automatically close filename completetion buffers in Emacs?
For example, when you open a file via C-x-C-f, you can TAB complete file names, and if there are more than one possible completions, it will pop open a completion buffer with a list of possible ...
9
votes
4answers
1k views
What does “s-[keyname]” refer to in Emacs, and how do I tell Emacs to ignore it?
Background information:
I'm on a Mac, and I've just upgraded to Emacs 23.1 via http://emacsformacosx.com/. There are a few issues, notably the lack of full screen ability.
I've attempted to get ...
9
votes
2answers
376 views
How can I tell in elisp if Emacs is using X?
I have some items in my .emacs that I don't want to run if I ran emacs -nw. How can I tell in elisp if that is the case?
(edited to change -nox to -nw --- where was my brain?)
9
votes
4answers
455 views
Is there an Emacs Lisp library for generating HTML?
I'm looking for a solution that allows me to write native Emacs Lisp code and at compile time turns it into HTML, like Franz's htmlgen:
(html
((:div class "post")
(:h1 "Title")
(:p "Hello, ...
9
votes
3answers
794 views
How can I check if a current buffer exists in Emacs?
I would like to write a function which takes action if a give buffer name already exists. For example:
(if (buffer-exists "my-buffer-name")
; do something
)
Does elisp have a function that ...
9
votes
3answers
1k views
Maximizing an Emacs frame to just one monitor with elisp
I use maxframe.el to maximize my Emacs frames.
It works great on all three major platforms, except on my dual-head Mac setup (Macbook Pro 15-inch laptop with 23-inch monitor).
When maximizing an ...