Hello,
GNU Emacs 23.2.1
GCC 4.4.4
I am using gdb-many-windows to debug.
I am just wondering is there anything better?
At the moment I am debugging a linked-list. The list is not that big. However, it would be nice to see all the elements' values. Instead of having to 'print sorted_queue->next->seconds' all the time.
The watch comm...
I'm loading tempo for Emacs:
(require 'tempo)
I can expand templates just fine, however not when the cursor is position on the beginning of the first line in the buffer.
I'm running Ubuntu with GNU Emacs 23.1.50.1 (x86_64-pc-linux-gnu, GTK+ Version 2.18.0)
of 2009-09-27 on crested, modified by Debian.
How can I use templates when t...
I've tried various version to no avail:
(global-set-key (kbd "C-<space>") 'tempo-complete-tag)
(global-set-key [C-space] 'tempo-complete-tag)
I'm using CUA mode and running Emacs on Ubuntu, version: GNU Emacs 23.1.50.1 (x86_64-pc-linux-gnu, GTK+ Version 2.18.0)
of 2009-09-27 on crested, modified by Debian
When I run tempo-complete-...
Hey all, I'm a long-time vim user trying to make the switch to emacs.
I'm using viper-mode in emacs and I keep typing ESC (to get out of insert mode) and then a key (say, j). I type fast and often hit them at the same time. Emacs then thinks I'm hitting META-j and runs a function which I do not intend.
I like using option as meta and d...
In Textmate: Power Editing for the Mac, the author says that Textmate has Emacs key bindings. When I try to use them in Textmate some work and some don't work. For example C-n moves the cursor down one line, but C-p runs some command that gives me weird output (it doesn't move up one line). Is there a way in Textmate to lookup what a ...
I use an emacs daemon to preserve my emacs session even if I have to reboot the machine that I run my X server on or if I want to access the same session from a different machine. This works very well but when restoring a session I'd quite like to just run "emacsclient --create-frame --no-wait" to connect to the daemon without opening a ...
How can I define an aquamacs keyboard shortcut using the mac command key. I'd like 'command'-k to act like ctrl-k (kill line).
Thanks in advance!
...
This page from the Emacs manual describes a function called make-frame-on-display that allows you to access a remote Emacs session. My interest in this function is to use it to share buffers for pair programming remotely with a colleague.
From the page:
It is even possible to use this feature to let two or more users type simultane...
I'm using GNU Emacs on my Ubuntu netbook in fullscreen mode. When I edit files that are under version control and hit C-x v v to commit the latest changes, an OpenSSH popup window will open and ask me for my password for the server on which my repository lives.
Unfortunately, because of the fullscreen mode, the popup window will not com...
I miss the emacs behavior for incremental search. In emacs, we can do this:
C-s
key in search text, i.e. "button"
The first occurance of button will be found. If you continue to press C-s, the next occurance will be found. It seems to me that IntelliJ is close to this, except that you need to press a different keystroke ...
Hey guys,
is it possible to search for the text that currently is present in the clipboard when hitting C-s, probably with some sort of hook that is triggered when hitting C-s and then inserts the clipboard into the minibuffer?
kind regards,
mefiX
...
I want to make different environment between Cocoa emacs and Aquamacs. They both read ~/.emacs, so I tried something like this.
(unless (symbolp 'aquamacs-version)
; code for emacs
)
But it doesn't seem to work.
How can I know if I run emacs or aquamacs?
...
Normally the easiest way to debug is using printf. What can I do to debug emacs-lisp? How can I print something to emacs editor from elisp? Or is there any way to debug elisp code?
For example, how can I check if the following code is run in .emacs file?
(load "auctex.el" nil t t)
...
Hey all, I'm looking for a more visually appealing emacs. Is there anything I can do to make it look more aesthetically appealing or more up to date?
I understand that its not how it looks but how it functions that counts, but I was wondering if anyone had any success in beautifying emacs.
My platforms are Linux and Windows. I'm aware ...
I used Aquamacs so far, and I need to install and run clojure using SLIME. I googled to get some way to use clojure on SLIME of Aquamacs, but without success.
Questions
Does anyone succeed installing clojure on Aquamcs? Or, can you guess why clojure on Aqumac doesn't work?
Is it normal that emacs and aquamacs can't share the same ELP...
How can I match Aquamacs' settings in Mac OS X emacs' AucTeX?
Because of some reason I tried to install AucTeX to emacs for Mac OS X.
For Aquamacs that has pre-installed AucTeX, everything is pretty cool.
It runs SKIM pdf viewer for viewing the result.
It can use pdfsync for reverse/forward link between Aquamacs and SKIM.
...
I'd like to use a keycode with modifiers in my .emacs file. However my naive attempts have failed so far. For instance if I use:
(global-set-key [93] "\\")
The ¥ key on my keyboard will emit \. However, what I'd also like to do is:
(global-set-key "M-[93]" "\\") ;; doesn't work
My implementation says that:
error: Key sequence ⇧M -...
I have the following piece of code in my .emacs:
(dolist (mode '(scheme emacs-lisp lisp clojure))
(add-hook
(intern (concat (symbol-name mode) "-mode-hook"))
(lambda ()
(progn
(run-programming-hook)
(message "%s" (concat (symbol-name mode) "-mode")))
Obviously the mode variable is void when lambda gets to ...
Is there anything that should be done to make GNU Emacs 23.2 work well with Python 3?
How would an ideal environment for development with Python 3 in Emacs look like?
Is there any documentation about using ropemacs with Python 3?
Should I add Python 3's site-packages directory to the python path?
Will following the instructions here ...
Hello,
Starting to learn Common lisp. Instal in my debian 5.03 clisp, emacs-23.1 and slime.
Write in .emacs:
(setq inferior-lisp-program "/usr/bin/clisp") ; your Lisp system
(add-to-list 'load-path "/home/slime/") ; your SLIME directory
(require 'slime)
(slime-setup '(slime-scratch slime-editing-commands slime-repl))
...