Make the window in help's golden file bigger, now that theres more help.

This commit is contained in:
Andrew Hamilton 2016-01-29 21:29:44 +00:00
parent 2230d78575
commit 77012c92e4
2 changed files with 61 additions and 41 deletions

View file

@ -1,40 +1,60 @@
┌──────────────── Help ────────────────┐ ┌────────────────────────────────────────────── Help ──────────────────────────────────────────────┐
│Vigil maintains a set of reports for  │ │Vigil maintains a set of reports for each file in a directory tree. │
│Different types of reports are produc │ │Different types of reports are produced for different types of file. │
 │ │ │
│The state of each report is summarise │ │The state of each report is summarised by a status indicator, and a report is │
│viewed by selecting this status indic │ │viewed by selecting this status indicator with the cursor. The types of status │
│are listed below.  │ │are listed below. │
 │ │ │
│Reports are recalculated whenever fil │ │Reports are recalculated whenever files are changed, so that they are always up │
│to date.  │ │to date. │
 │ │ │
│The reports are cached in a directory │ │The reports are cached in a directory ".vigil" under the target directory. │
 │ │ │
 │ │ │
│Usage:  │ │Usage: │
│ vigil [options] <root_path>  │ │ vigil [options] <root_path> │
│ vigil -h | --help  │ │ vigil -h | --help │
 │ │ │
│Example:  │ │Example: │
│ # vigil my_project  │ │ # vigil my_project │
 │ │ │
│Options:  │ │Options: │
│ -h --help Show this screen │ │ -h --help Show this screen and exit. │
│ -n --no-sandbox Don't prevent ch │ │ -n --no-sandbox Don't prevent changes to the filesystem. │
 │ │ │
│Keys:  │ │Keys: │
h - Show the help screen. (toggle)  │ h - Show the help screen. (toggle) │
d, c, j, k, f, v or arrow keys or m │ d, c, j, k, f, v or arrow keys or mouse click - Move the cursor. │
D, C, J, K, F, V or page up, page d │ D, C, J, K, F, V or page up, page down, home, end or the mouse wheel - │
│ Scroll the result pane.  │ │ Scroll the result pane. │
t - Turn the result pane to portrai │ t - Turn the result pane to portrait or landscape orientation. (toggle) │
l - Show the activity log. (toggle) │ l - Show the activity log. (toggle) │
n - Move to the next issue. │ n - Move to the next issue. │
N - Move to the next issue of the c │ N - Move to the next issue of the current tool. │
o - Order files by type, or by dire │ o - Order files by type, or by directory location. (toggle) │
p - Pause work. (toggle) │ p - Pause work. (toggle) │
s - Change the appearance of result │ s - Change the appearance of result statuses. (toggle) │
q - Quit. │ q - Quit. │
  │ │ │
└──────────────────────────────────────┘ │Statuses: │
│  Normal │
  Ok │
  Problem │
  Not applicable │
  Running │
  Paused │
│ . Pending │
E  Error │
│ │
│ │
│ │
│ │
│ │
│ │
│ │
│ │
│ │
│ │
│ │
└──────────────────────────────────────────────────────────────────────────────────────────────────┘

View file

@ -41,7 +41,7 @@ class LruCacheWithEvictionTestCase(unittest.TestCase):
self._assert_cache(a, 1, 2, 2) self._assert_cache(a, 1, 2, 2)
_DIMENSIONS = (40, 40) _DIMENSIONS = (100, 60)
def _widget_to_string(widget, dimensions=_DIMENSIONS): def _widget_to_string(widget, dimensions=_DIMENSIONS):