Staging
v0.5.1
https://foss.heptapod.net/mercurial/hgview
Revision 9f0650901b8be7777d74c5cd7278e3317e4b8271 authored by Alain Leufroy on 12 September 2011, 13:57:48 UTC, committed by Alain Leufroy on 12 September 2011, 13:57:48 UTC
* tab: completion of the command. It takes into account the text in the edit area
       until the cursor.
       The completion system allows to use widcard. So "*context" will be
       completed by (hide-context, maximize-context, show-context)

* up|down|ctrl p|ctrl n: command history
* starting or endind the command name with '?' displays the command help.
  So, "quit?" == "?quit" == "help quit"

:Note:

* I've tried to connect cmd.Cmd to urwid => poor result because only a few part
  of Cmd may be usefull, output coloring is not really possible and I've to
  refactorize the actual commands storage.
* Input and Output are not standard, so readline is not really usefull here.
1 parent ba3af1b
Raw File
Tip revision: 9f0650901b8be7777d74c5cd7278e3317e4b8271 authored by Alain Leufroy on 12 September 2011, 13:57:48 UTC
[console] add history and completion for command (closes #84733)
Tip revision: 9f06509
MANIFEST.in
exclude .hgignore
recursive-exclude debian *
recursive-exclude test *
recursive-exclude debian.hardy *
recursive-exclude debian.lenny *
recursive-exclude debian.intrepid *

include ChangeLog
include COPYING
include README

include bin/hgview
include bin/hgview.bat

include hgviewlib/qt4/*.ui
include hgviewlib/qt4/hgqv.qrc
include hgviewlib/qt4/icons/*

include doc/hgview.1.txt
include doc/Makefile
include hgext/hgview.py

include hgext/hgview.rc
include doc/hgqv.1
include setup.py
include __pkginfo__.py
include test/data/hgviewrc
include test/data/.hgviewrc


recursive-include etc *
back to top