ananthakumaran / monky

Magit for Hg

Home Page:http://ananthakumaran.in/monky/index.html

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Monky An Emacs mode for Hg

Monky provides an interactive interface for Hg.

screenshot

Installation

(add-to-list 'load-path "path/to/monky/dir")
(require 'monky)

;; By default monky spawns a seperate hg process for every command.
;; This will be slow if the repo contains lot of changes.
;; if `monky-process-type' is set to cmdserver then monky will spawn a single
;; cmdserver and communicate over pipe.
;; Available only on mercurial versions 1.9 or higher

(setq monky-process-type 'cmdserver)

Usage

open any file in a hg repo and run M-x monky-status to see the current status. Look at the documentation for further details.

Thanks

Heavily borrowed from Magit. Thanks to Marius Vollmer.

Contributors

ananthakumaran (Anantha Kumaran)

lyro (Frank Fischer)

tkf (Takafumi Arakaki)

About

Magit for Hg

http://ananthakumaran.in/monky/index.html

License:GNU General Public License v3.0


Languages

Language:Emacs Lisp 99.2%Language:Makefile 0.8%