6b1eb12fe4
communication between Emacs Lisp and Python. Pymacs aims Python as an extension language for Emacs rather than the other way around, and this assymetry is reflected in some design choices. Within Emacs Lisp code, one may load and use Python modules. Python functions may themselves use Emacs services, and handle Emacs Lisp objects kept in Emacs Lisp space. PR: ports/85995 Submitted by: Mike Meyer <mwm@mired.org>
10 lines
306 B
Plaintext
10 lines
306 B
Plaintext
Add the following to your emacs initialization file to enable pymacs:
|
|
|
|
(autoload 'pymacs-load "pymacs" nil t)
|
|
(autoload 'pymacs-eval "pymacs" nil t)
|
|
(autoload 'pymacs-apply "pymacs")
|
|
(autoload 'pymacs-call "pymacs")
|
|
|
|
See http://pymacs.progiciels-bpi.ca/manual/index.html for
|
|
documentation on using pymacs.
|