Merge pull request #568 from gforsyth/completion_tweak

add `man` to completion skip tokens
This commit is contained in:
Anthony Scopatz 2015-12-08 11:31:03 -05:00
commit 846554ac9d

View file

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