From c836d6c1f75586d921a5236db88c534220788eae Mon Sep 17 00:00:00 2001 From: midichef <67946319+midichef@users.noreply.github.com> Date: Sat, 21 Dec 2024 23:52:56 -0800 Subject: [PATCH] [errors-] add sysopen-error to Error/ErrorCell sheet guides --- visidata/textsheet.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/visidata/textsheet.py b/visidata/textsheet.py index ae82ac32c..4a4f3f09a 100644 --- a/visidata/textsheet.py +++ b/visidata/textsheet.py @@ -60,7 +60,12 @@ class ErrorSheet(TextSheet): ColumnItem('linenum', 0, type=int, width=0), ColumnItem('error', 1), ] - guide = '''# Error Sheet''' + guide = ''' + # Error Sheet +This is the traceback for an error. +- move cursor then {help.commands.sysopen_error} +- `q` to quit this error sheet. + ''' precious = False def sysopen_error(self, col, row): @@ -86,6 +91,7 @@ class ErrorCellSheet(ErrorSheet): ] guide = '''# Error Cell Sheet This sheet shows the error that occurred when calculating a cell. +- move cursor then {help.commands.sysopen_error} - `q` to quit this error sheet. '''