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…
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…
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…
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…
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?
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);
}
…
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…
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…
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…
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
…
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…
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…
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…
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…
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…