The '?' command doesn't work in text mod
Status: Beta
Brought to you by:
gently
When I type a wrong command in text mode sixpack
replies with:
Command 'lsdkla' not found. Use 'help' or '?'.
But when I type '?' it replies with
Command '?' not found. Use 'help' or '?'.
Which is a bit silly... Thing is that in sub
execCommand the line for '?' is missing, so just
replace
if ( /^\s*help\s*$/ || /^\s*h\s*$/ )
with
if ( /^\s*help\s*$/ || /^\s*h\s*$/ || /^\s*\?\s*$/ )
and it's fixed :)
Boy, if all bugs were this easy 'ey?