/README.md

http://github.com/ananthakumaran/monky · Markdown · 41 lines · 25 code · 16 blank · 0 comment · 0 complexity · 3e9a58efe4f167246265c84a728e756d MD5 · raw file

  1. # Monky An Emacs mode for Hg [![Build Status](https://travis-ci.org/ananthakumaran/monky.svg?branch=master)](https://travis-ci.org/ananthakumaran/monky)
  2. Monky provides an interactive interface for Hg.
  3. ![screenshot](screenshots/monky.png)
  4. ## Installation
  5. ````cl
  6. (add-to-list 'load-path "path/to/monky/dir")
  7. (require 'monky)
  8. ;; By default monky spawns a seperate hg process for every command.
  9. ;; This will be slow if the repo contains lot of changes.
  10. ;; if `monky-process-type' is set to cmdserver then monky will spawn a single
  11. ;; cmdserver and communicate over pipe.
  12. ;; Available only on mercurial versions 1.9 or higher
  13. (setq monky-process-type 'cmdserver)
  14. ````
  15. ## Usage
  16. open any file in a hg repo and run `M-x monky-status` to see the
  17. current status. Look at the [documentation][monky-documentation] for further details.
  18. ## Thanks
  19. Heavily borrowed from [Magit][magit]. Thanks to Marius Vollmer.
  20. [magit]: http://github.com/magit/magit
  21. [monky-documentation]: http://ananthakumaran.github.com/monky/index.html
  22. ## Contributors
  23. [ananthakumaran](https://github.com/ananthakumaran) (Anantha Kumaran)
  24. [lyro](https://github.com/lyro) (Frank Fischer)
  25. [tkf](https://github.com/tkf) (Takafumi Arakaki)