A Emacs mode for newLISP that I found somewhere and am tweaking, as needed.
may/newlisp-mode
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
master
Could not load branches
Nothing to show
Could not load tags
Nothing to show
{{ refName }}
default
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code
-
Clone
Use Git or checkout with SVN using the web URL.
Work fast with our official CLI. Learn more about the CLI.
- Open with GitHub Desktop
- Download ZIP
Sign In Required
Please sign in to use Codespaces.
Launching GitHub Desktop
If nothing happens, download GitHub Desktop and try again.
Launching GitHub Desktop
If nothing happens, download GitHub Desktop and try again.
Launching Xcode
If nothing happens, download Xcode and try again.
Launching Visual Studio Code
Your codespace will open once ready.
There was a problem preparing your codespace, please try again.
Latest commit
Git stats
Files
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
# Maintainer wanted. ;; Quickstart ;; Download newlisp-mode: $ git clone https://github.com/may/newlisp-mode.git ;; Place this in your .emacs to get up and running with newlisp-mode. (load-file "~/newlisp-mode/newlisp.el") (add-to-list 'auto-mode-alist '("\\.lsp$" . newlisp-mode)) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; The above will unconditionally load newlisp-mode on every startup. If you'd ;; rather wait to load it until you actually need it, use this instead: (add-to-list 'load-path "~/newlisp-mode") (autoload 'newlisp "newlisp" "Major mode for newlisp files" t) (add-to-list 'auto-mode-alist '("\\.lsp$" . newlisp-mode)) ;;;; Things that might make life easier: ;; Make Emacs' "speedbar" recognize newlisp files (eval-after-load "speedbar" '(speedbar-add-supported-extension ".lsp")) ;; Another way to use C-x C-e to eval stuff and doesn't jump to next function (define-key newlisp-mode-map [(control x) (control e)] 'newlisp-evaluate-prev-sexp) ;; I think I got tired of typing 'newlisp-show-interpreter' all the time. (defun start-newlisp () "Starts newlisp interpreter/or shows if already running. Requires newlisp-mode to be loaded." (interactive) (newlisp-show-interpreter)) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Please note -- I just found this code somewhere, got it to work and am documenting what I've found and any fixes/improvements I make here in case someone else finds them useful. - May
About
A Emacs mode for newLISP that I found somewhere and am tweaking, as needed.
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published