aquamacs

Changing the font in Aquamacs?

I've recently had a need to do a bit of lisp editing and I found the nifty Ready Lisp package for OS X, which is great, except Aquamacs automatically uses a proportional font (which is idiotic, IMHO) and I want to change it to a monospace font. However, I'm not really much of an EMACS user, and the preferences menu in Aquamacs is less th...

Spell-check in Aquamacs Emacs won't work: "Wrong endian order."

This is aquamacs 1.5 on a macbook. Exact error when I try to spell-check: Error: The file "/Library/Application Support/cocoAspell/aspell6-en-6.0-0//en-common.rws" is not in the proper format. Wrong endian order. ADDED: I indeed had the wrong version of cocoAspell. But installing the right version didn't work until I actually wiped (...

How can you have folds for a LaTex file in xEmacs?

I would like to have automatic folds for comments in my AquaEmacs. ...

How can you have a Vim-like-Taglist in Emacs?

I use AquaEmacs. I would like to have Emacs which has a vertical hierarchy (at the left-hand-side) about items in the document, similar to Vim's plugin Taglist. ...

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 I'd like to find a way for emacs to not ask me about it at all if the contents on disk are identical to those in the buffer. Secondly I'd l...

How to setup cscope with aquamacs on MacOS?

Can you please tell me how can I setup cscope with aquamacs on MacOS? I have followed a link from Google saying how to build a cscope database for my source code. But how can I invoke cscope with aquamacs? Thank you. ...

How to setup Aquamacs for Clojure development?

I've tried to migrate to Emacs several times for Clojure development, following a variety of blogposts, screencast and tutorials, but somewhere along the way something always went wrong - keybindings that didn't work, incompatible versions, etc, and I found myself scrambling back to Vim. But I know I want Paredit and SLIME. So, I'm goin...

a question on common lisp

Hello people, I'm getting crazy with a small problem here, I keep getting an error and I cant seem to figure out why, the code is supposed to change the range of a list, so if we give it a list with values (1 2 3 4) and we want to change the range in 11 to fourteen the result would be (11 12 13 14) the problem is that the last functio...

how can I share a project-specific configuration between Aquamacs and gnu-emacs

I have a .emacs.d directory shared (via git) with branches for various projects and Aquamacs seems to be ignoring it completely. All the other development systems work very well with this system so I would prefer to keep it if it can be made to work with Aquamacs. ...

Aquamacs and IDLWAVE

I've just installed the new Aquamacs 2.0 in my Mac Os X 10.6.3 and I'm an happy user of IDLWAVE on Aquamacs for programming in IDL. Unfortunately I run into a problem which I can't understand. I used in my configuration file to put the following (setq idlwave-surround-by-blank t) for the beautiful space around operator. This us...

How to define shortcuts using the mac 'command' key in aquamacs (or emacs)

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! ...

emacs (cocoa emacs) vs aquamacs for running clojure on Mac OS X

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...

Match Aquamacs' settings in emacs

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. ...

Running clojure with 'lein swank' on Aquamacs problem.

I stalled leiningen and run lein swank. sudo lein deps lein swank Aquamacs has everything about SLIME, so it's OK. Solution to this problem David helped me to be out of trouble. As Aquamacs has built-in slime, I didn't need anything complex about the setup. I just needed one line - (slime-setup '(slime-repl)). ...

Using two emacs (Cocoa emacs and Aquamacs) at the same time

I happen to have two emacs on my Mac because of clojure setup. The problem is that Cocoa emacs and Aquamacs uses the same ~/.emacs.d, but the ELPA of Cocoa emacs and that of Aquamacs are not compatible so that some files are overwritten and not usable for both of them. Is there any way to tell Aquamacs not to use ~/.emacs.d for ELPA? ...

Why does my *scratch* buffer save data in aquamacs emacs?

In regular emacs my understanding was that if you killed the scratch buffer, when you switched back to it it would be empty, or when you closed and restarted emacs, it would be empty. With Aquamacs, it seems to preserve the buffer contents. Why might this happen? ...

How do I connect a clojure source file to a running clojure repl on Emacs?

I'm currently in the process of adding functionality to an existing J2EE webapp, in a Tomcat container, and I'm writing my additions using Clojure. My setup is simple: I just add calls to static methods generated by clojure, and code all the hard work from the clojure side. The build process consists in compiling clojure code (lein uberj...

define bash aliases for Aquamacs shell

Hi, for Emacs you can define your shell-mode aliases in .emacs.d/init_bash.sh, but Aquamacs (2.0 on OS X 10.5) does not seem to use this. Is there another place where these can be defined? ...

Why clojure starts with 'M-x slime' for my Aquamacs without any setup?

I have Aquamacs running on my Mac. I installed the ESK for Aquamacs and it installs ELPA at ~/.emacs.d/elpa. With ELPA, I installed clojure-mode/clojure-est-mode/slime/slime-repl/swank-clojure. The thing is that when I run 'M-x slime', clojure is run. Why is this? I'm curious as I don't have any setup for slime in my .emacs and even i...

What's the magic behind the ELPA?

I use Aquamacs, and I use ELPA that installs files in ~/.emacs.d/elpa? What's the magic behind this ELPA? I mean, without ELPA, I should download and install the packages in a specific directory, and add those two lines in .emacs. (add-to-list 'load-path "PACKAGE_DIRECTORY") (require 'PACKAGE) But, with ELPA, I don't see anythin...