all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: james <james.kingston@gmail.com>
To: help-gnu-emacs@gnu.org
Subject: Re: how to import other programming language support on windows emacs ?
Date: Wed, 9 Jul 2008 07:44:33 -0700 (PDT)	[thread overview]
Message-ID: <5547444b-bf06-42db-8f21-d8750f7e3fc8@c58g2000hsc.googlegroups.com> (raw)
In-Reply-To: mailman.14334.1215440442.18990.help-gnu-emacs@gnu.org

On Jul 7, 9:20 am, black <quitebl...@gmail.com> wrote:
> thanks. i tried ur method and
> C:\Documents and Settings\Black Qin\Application Data\.emacs.d\auto-save-list
> is exaclty what i got from C-x C-f ~/.emacs.
>
> anyone who's experienced with emacs and windows could figure out how can i
> import my actionscript.el pls ?

Do you have something loaded which does some sort of autocomplete at
the find prompt (unlikely, I suppose)?  If so, or if you're not sure,
you can get around it by calling the function non-interactively like
so:
  M-x eval-expression
At the "Eval: " prompt enter:
  (find-file "~/.emacs")
including the parentheses

Like someone else mentioned, you can also try _emacs as a workaround
that I've never found necessary under windows XP

If you get the .emacs file open, first find a place to save the elisp
file, perhaps ~/elisp
  M-x make-directory, then ~/elisp
Copy the file to C:\Documents and Settings\Black Qin\Application Data
\elisp using windows explorer


Then you can follow rene's advice and to the .emacs file add:

(add-to-list 'load-path "~/elisp")
(require 'actionscript-mode)
(setq auto-mode-alist (cons '("\\.as$" . actionscript-mode.el) auto-
mode-alist))

Then M-x eval-buffer to try the settings out


      parent reply	other threads:[~2008-07-09 14:44 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-07-06  5:18 how to import other programming language support on windows emacs ? black
2008-07-06  7:28 ` Peter Dyballa
2008-07-06  7:30 ` Frayja
2008-07-06  7:51 ` rmborchers, Borchers <rmborchers
2008-07-06 15:08 ` black
2008-07-06 17:32   ` rmborchers, Borchers <rmborchers
     [not found] ` <mailman.14287.1215360668.18990.help-gnu-emacs@gnu.org>
2008-07-06 16:43   ` Colin S. Miller
2008-07-07  4:07 ` black
2008-07-07 14:20 ` black
     [not found] ` <mailman.14311.1215403653.18990.help-gnu-emacs@gnu.org>
2008-07-07 21:18   ` Colin S. Miller
     [not found] ` <mailman.14334.1215440442.18990.help-gnu-emacs@gnu.org>
2008-07-09 14:44   ` james [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=5547444b-bf06-42db-8f21-d8750f7e3fc8@c58g2000hsc.googlegroups.com \
    --to=james.kingston@gmail.com \
    --cc=help-gnu-emacs@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.