Questions tagged [emacs23]

Version 23 of the GNU Emacs text editor.

Version 23 of the GNU Emacs text editor.

245 questions
0
votes
1 answer

changing Mumamo custom face settings in emacs

I am using nXhtml, flymake and the solarized color theme in emacs 23. Everything works fine but I am not particularly happy with the colors that are being used for displaying constants in php. Bright red and doesn't go well with the solarized dark…
naiquevin
  • 7,588
  • 12
  • 53
  • 62
0
votes
1 answer

emacs identation works only in terminal (-nw)

I have GNU Emacs 23.1.1, on Ubuntu 10.10. I have to following .emacs: (custom-set-variables '(cua-mode t nil (cua-base)) '(inhibit-startup-screen t) ) (show-paren-mode 1) (setq show-paren-delay 0) ;; perl mode stuff (fset 'perl-mode…
vkats
  • 117
  • 1
  • 8
0
votes
1 answer

RefTex in emacs menu bar

I would be very grateful if anyone can give advice on creating a Ref menu in the menu bar in GNU emacs. Q: How do I get RefTeX to create a Ref menu in the menu bar in emacs? Or is this possible on windows? The RefTeX manual says "on systems which…
Etn
  • 1
  • 1
0
votes
1 answer

Emacs 23.3 - default-mode-line-format obsolete?

I switched from emacs 23.1 to emacs 23.3. I had in my configuration file a setting like the following: (setq default-mode-line-format '( string-one string-two more-strings )) Emacs responds that default-mode-line-format became obsolete…
sawa
  • 165,429
  • 45
  • 277
  • 381
0
votes
2 answers

color-theme-install undefined

I updated to GNU emacs 23.3.1, and my configuration file, which worked under GNU emacs 23.1.1, gives me an error that says color-theme-install is void. Is there any way that I can fix it?
sawa
  • 165,429
  • 45
  • 277
  • 381
0
votes
4 answers

compile c problem in emacs (ubuntu)

I wrote a very simple program like: ( sorry, I typed the code in the right way, but the display is wired. How could I fix it?) #include int main( void ) { int i; for ( i = 0; i <= 10; i++ ) { printf( "%d hello!\n", i); } …
user565739
  • 1,302
  • 4
  • 23
  • 46
0
votes
1 answer

better display in term (/bin/bash) or multi-term (multi-term.el) in Emacs

when I use term inside emacs ( M-x term), I found that if I maximize the window, then the display in quite good (when I am doing something like apt-get install full-texlive or something will give me a lot of message). But if I resize the Emacs…
user565739
  • 1,302
  • 4
  • 23
  • 46
0
votes
1 answer

error with "other-window" with "emacs-startup-hook"

When I open emacs, I would like to see the following: 2 windows, left window is for editing the document and the right windows run the program "multi-term" I tried to edit my ~/.emacs with: (add-hook 'emacs-startup-hook 'other-window) (add-hook…
user565739
  • 1,302
  • 4
  • 23
  • 46
0
votes
1 answer

emacs 23 on OS X: how to open web links from emacs?

I'm trying the 23.2 release Cocoa Emacs build (OS X 10.6). There's a number of things that are more annoying about Cocoa Emacs than the terrific Carbon Emacs (based on an Emacs 22 build, I believe), so I hoped folks might have some…
jowens
  • 355
  • 3
  • 10
0
votes
1 answer

emacs color-theme problem

I created my own color theme using this website. I've added a new .el file to my ./site-lisp/color-theme/themes directory with the following code: (defun your-config-name-here () (interactive) (color-theme-install '(your-config-name-here …
sonelliot
  • 147
  • 1
  • 1
  • 8
0
votes
1 answer

Use search script froma previous search emacs

I'm an emacs newbie . I use C-s "text" to search for a text. How do I select from a previous search buffer to research an entry instead of typing it allover again . For instance C-S "text1" C-S "text2" Is there a shortcut to remeber text1 so…
nogeek001
  • 713
  • 1
  • 7
  • 14
0
votes
2 answers

Geben for emacs on Ubuntu 10.04

I've had geben running perfectly on previous versions of Ubuntu. After the upgrade, and installing the latest version of geben (0.26), it only half works. Specifically, when in context mode, local variables are always marked as undefined. Has…
jhedstrom
  • 3,378
  • 1
  • 23
  • 19
0
votes
2 answers

Cross compile on Emacs

How do I create/issue compilation command on Emacs, so I don't need to switch back and forth between it and console? My usual compilation procedure I'd like to see as Emacs command: $ export…
KBart
  • 1,580
  • 10
  • 18
0
votes
1 answer

Initiate Code in Emacs

I use emacs to mostly code in c++. Is there any way to add a particular piece of code snippet to every new file opoened in Emacs. For eg: Suppose i want to create a new file in emacs with name abc.cpp and emacs by default initiates the file with…
Sarkar
  • 33
  • 1
  • 6
0
votes
1 answer

regular expression with the same element twice without knowing it

I've plenty fill and want to find all of them which are like this: A = A + B So I wanna use a regular expression using M + x rgrep. and was thinking to something like that: ([A-Za-z][A-Za-z0-9]*) = () + [A-Za-z][A-Za-z0-9]* where () create a group…
Romain Picot
  • 255
  • 1
  • 13