add man to completion skip tokens

Just a quick addition to allow tab completion when opening man pages
This commit is contained in:
Gil Forsyth 2015-12-08 11:25:57 -05:00
parent a567734e7b
commit 532480988b

View file

@ -28,7 +28,7 @@ XONSH_TOKENS = {
'...'
}
COMPLETION_SKIP_TOKENS = {'sudo', 'time'}
COMPLETION_SKIP_TOKENS = {'sudo', 'time', 'man'}
COMPLETION_WRAP_TOKENS = {' ',',','[',']','(',')','{','}'}