0
votes
1answer
2 views
comparison table for emacs regexp and perl compatible regular expression (PCRE)?
Is there a nice table or a cheatsheet on the web that compares the sytax of emacs regex and PCRE?
That I have to remember to escape grouping parenthesis and braces and other differences when I'm …
1
vote
2answers
36 views
height of emacs bottom command line
How do I change the height of the emacs bottom command line. It seems it's a fraction of the whole frame, which takes too much space. Thanks in advance.
1
vote
2answers
48 views
How to have emacs save file at multiple locations?
Is there an easy way to have emacs save current buffer in two locations?
I could in the 'after-save-hook' programmatically copy the current file to a second location, but writing lisp code for that …
1
vote
2answers
52 views
Natural order sort for Emacs Lisp
Has anyone implemented a natural order sort in Emacs Lisp? I know it's not hard to write, but it's easier to borrow someone else's work.
(Yeah, I can't believe I just searched for an Emacs function …
1
vote
2answers
68 views
How can I open textual sites in emacs?
Hi! I would like to know how to open sites in emacs. Websites with plain HTML without many graphics!! Is there a mode that I must set??
Thanks!!
0
votes
2answers
51 views
[emacs] how to know current buffer have set-mark
is there any way know there is set-mark beginning and where is the start point query in lisp
0
votes
4answers
54 views
emacs: is before-save-hook a local variable?
how would I figure this out?
I added delete-trailing-whitespace to the before-save-hook in my c-mode-common-hook, but it looks like delete-trailing-whitespace is getting called for every file, not …
2
votes
2answers
64 views
What is the simplest, most portable way to send an email in elisp?
I'd like to write a little emacs command to send an email. What's the simplest way to do this? I know there are a lot of mail-sending plugins for emacs, but I really just need to send a simple …
1
vote
4answers
79 views
how to open *.info file in emacs in info mode?
C-x C-f blah.info opens the file in fundametal mode. I used apropos and found Info-mode which I thought might change from fundamental mode into Info mode, but that throws a lisp error.
How can I …
2
votes
1answer
41 views
mumamo-alt-php-tags-mode by default
Hello,
I just started playing about with emacs yesterday for a project I'm working on. Anyway, i've started using the nxhtml-mumamo for web dev work and have got everything working alright except for …
0
votes
4answers
59 views
How do I get my cocoa emacs on Mac OS X to load my .emacs visual customizations for new windows (any document opened after the first)?
So I just downloaded emacs 23.1 for my new snow leopard macbook pro from http://emacsformacosx.com/ and it works like a charm, except...
I have visual customizations in my .emacs, a few lines are …
4
votes
3answers
155 views
What mode do people use when using Emacs to edit web pages that contain CSS, javascript, and HTML?
typically the code is something like:
<html>
<head>
<style type="text/css">
body { font-size:12pt; font-family: Arial;}
....
</style>
<script …
0
votes
3answers
49 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 …
0
votes
0answers
61 views
Divide buffers in emacs
Hi!
I'm trying to divide my buffers among screens using escreen and elscreen (with elscreen-buffer-list), yet it simply doesn't happen. In the case of elscreen, I run (toggle-elscreen-buffer-list), …
0
votes
1answer
49 views
Emacs Python-Mode: Sending statements to a subprocess does not lead to REPL-style evaluation.
After selecting 1 + 1 and issuing python-send-region, my subprocess buffer shows no results. I have to evaluate print 1 + 1, instead.
How can I force the python-send-* commands to print the value of …
