emacs-snapshot and IDLWAVE [message #53751] |
Wed, 02 May 2007 06:44  |
Geoff Cureton
Messages: 4 Registered: May 2000
|
Junior Member |
|
|
Hi all,
I have recently playing around with getting a
version of emacs with decent font support, so I could
use IDLWAVE without making my eyes bleed. I across a
package (I am using Kubuntu feisty) called emacs-snapshot,
maintained by Alexandre Vassalotti. After installing
emacs-snapshot (which looks great, gtk2 support), I
installed the IDLWAVE into whereever I could find a
"site-lisp" directory, and appended the relevant text...
(autoload 'idlwave-mode "idlwave" "IDLWAVE Mode" t)
...etc to ~/.emacs as per the installation instructions.
I'm sure there is a site wide .emacs file that I should
copy the mode definition to, but I'm not sure where that is.
Unfortunately I have not been able to get emacs-snapshot
to start the IDLWAVE mode when I open a "*.pro" file.
I'd be interested to know if anyone has used the
emacs-snapshot package under linux ((K)Ubuntu or
otherwise), and what issues they may have had.
Cheers,
Geoff
|
|
|
Re: emacs-snapshot and IDLWAVE [message #53813 is a reply to message #53751] |
Wed, 02 May 2007 14:04  |
JD Smith
Messages: 850 Registered: December 1999
|
Senior Member |
|
|
On Wed, 02 May 2007 21:44:27 +0800, Geoff Cureton wrote:
> Hi all,
> I have recently playing around with getting a
> version of emacs with decent font support, so I could
> use IDLWAVE without making my eyes bleed. I across a
> package (I am using Kubuntu feisty) called emacs-snapshot,
> maintained by Alexandre Vassalotti. After installing
> emacs-snapshot (which looks great, gtk2 support), I
> installed the IDLWAVE into whereever I could find a
> "site-lisp" directory, and appended the relevant text...
>
> (autoload 'idlwave-mode "idlwave" "IDLWAVE Mode" t)
>
> ...etc to ~/.emacs as per the installation instructions.
> I'm sure there is a site wide .emacs file that I should
> copy the mode definition to, but I'm not sure where that is.
> Unfortunately I have not been able to get emacs-snapshot
> to start the IDLWAVE mode when I open a "*.pro" file.
>
> I'd be interested to know if anyone has used the
> emacs-snapshot package under linux ((K)Ubuntu or
> otherwise), and what issues they may have had.
IDLWAVE is distributed with GNU Emacs. I don't know about the
pedigree of that emacs-snapshot, but I expect if it's an Emacs 22, you
shouldn't need to do anything, and '.pro' support should be ready to
go "out of the box", IDLWAVE included. This is certainly true of any
recent Emacs 22 pre-release snapshots. Again, you shouldn't need this,
but make sure you've got:
(setq auto-mode-alist (cons '("\\.pro\\'" . idlwave-mode) auto-mode-alist))
in your .emacs. Does M-x idlwave-mode get you into the mode
correctly? What version does it report?
JD
|
|
|