Documentation
Commentary
zendmd-comint lets you run the zendmd process as an inferior python process
and send your python code directly to it. It also allows you to execute
the current script as a zendmd script and see the output.
The zendmd-minor-mode will replace your "send to python" commands in python with
suitable "send to zendmd" commands.
Usage:
1. Put zendmd-comint.el in your load path
2. Add (require 'zendmd-comint) to your .emacs
3. Set inferior-zendmd-program-command to the execution command for running your zendmd
(setq inferior-zendmd-program-command "/path/to/executable <args>")
Do: M-x inferior-zendmd-start-process
Away you go.
To use the minor mode add a hook in your python mode like the following:
(add-hook 'python-mode-hook '(lambda ()
(zendmd-minor-mode 1)))
Consumers
Reverse Dependencies
No reverse dependencies recorded.