Results 1 to 6 of 6

Thread: emacs *.el

  1. #1

    emacs *.el

    How do can I use those *.el files for emacs where do I put those files?

  2. #2

    Re: emacs *.el

    In your ~/.emacs:
    Code:
    (load "filename.el")

  3. #3

    Re: emacs *.el

    Then how would I select to use it? Like if I have like 10 *.el and I only want to use one..

  4. #4

    Re: emacs *.el


    Then how would I select to use it? *Like if I have like 10 *.el and I only want to use one..
    Uhh, I still don't understand. If you have a file named prolog.el, then just type in that name:
    Code:
    ; file: .emacs
    (load "prolog.el")

  5. #5

    Re: emacs *.el

    I want to use ljupdate.el I've added it to .emacs but if i just start emacs it won't use ljupdate.el How do activated so that I can use it

  6. #6

    Re: emacs *.el

    I want to use ljupdate.el I've added it to .emacs but if i just start emacs it won't use ljupdate.el *How do activated so that I can use it
    You may have to byte-compile your .emacs while editing it:
    Code:
    M-x emacs-lisp-byte-compile-and-load

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •