/README.md
Markdown | 41 lines | 25 code | 16 blank | 0 comment | 0 complexity | 3e9a58efe4f167246265c84a728e756d MD5 | raw file
1# Monky An Emacs mode for Hg [](https://travis-ci.org/ananthakumaran/monky) 2 3Monky provides an interactive interface for Hg. 4 5 6 7## Installation 8 9````cl 10(add-to-list 'load-path "path/to/monky/dir") 11(require 'monky) 12 13;; By default monky spawns a seperate hg process for every command. 14;; This will be slow if the repo contains lot of changes. 15;; if `monky-process-type' is set to cmdserver then monky will spawn a single 16;; cmdserver and communicate over pipe. 17;; Available only on mercurial versions 1.9 or higher 18 19(setq monky-process-type 'cmdserver) 20 21```` 22 23## Usage 24 25open any file in a hg repo and run `M-x monky-status` to see the 26current status. Look at the [documentation][monky-documentation] for further details. 27 28## Thanks 29 30Heavily borrowed from [Magit][magit]. Thanks to Marius Vollmer. 31 32[magit]: http://github.com/magit/magit 33[monky-documentation]: http://ananthakumaran.github.com/monky/index.html 34 35## Contributors 36[ananthakumaran](https://github.com/ananthakumaran) (Anantha Kumaran) 37 38[lyro](https://github.com/lyro) (Frank Fischer) 39 40[tkf](https://github.com/tkf) (Takafumi Arakaki) 41