Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/syohex/scheme-here
cmuscheme extension for multiple inferior processes
https://github.com/syohex/scheme-here
Last synced: about 19 hours ago
JSON representation
cmuscheme extension for multiple inferior processes
- Host: GitHub
- URL: https://github.com/syohex/scheme-here
- Owner: syohex
- License: gpl-2.0
- Created: 2015-11-26T07:36:02.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2015-11-26T07:46:47.000Z (about 9 years ago)
- Last Synced: 2024-11-09T06:08:25.812Z (about 2 months ago)
- Language: Emacs Lisp
- Size: 11.7 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
scheme-here
===========Scheme-here is a cmuscheme extension for multiple inferior processes. It provides different inferior processes for different bufferes.
Installation
------------It is recommended installed by the ELPA package system. You should install it by `M-x:` with `package-install: scheme-here`.
Usage
-----Add the following to your `init.el`:
(eval-after-load 'scheme
(require 'scheme-here))Definition
----------Scheme-here provides the following convinent definations:
`run-scheme-here`
`switch-to-scheme-here`
`scheme-here-send-region`
`scheme-here-send-sexp`
`scheme-here-send-def`
`scheme-here-eval-buffer`
`scheme-here-send-region/switch`
`scheme-here-send-sexp/switch`
`scheme-here-send-def/switch`
`scheme-here-load-file`
`scheme-here-trace-procedure`
`scheme-here-expand-current-form`Examples
--------You can rebind the key bindings like this:
(eval-after-load 'scheme
(progn
(require 'scheme-here)
(define-key scheme-mode-map (kbd "C-c M-j") 'run-scheme-here)))