Merge pull request #2016 from xonsh/view

added view to unthreadable
This commit is contained in:
Gil Forsyth 2016-12-15 16:08:41 -05:00 committed by GitHub
commit 01ad4c64f3
2 changed files with 8 additions and 0 deletions

View file

@ -11,6 +11,7 @@
* clear.exe * clear.exe
* cls * cls
* cmd * cmd
* ex
* fish * fish
* htop * htop
* ksh * ksh
@ -21,6 +22,8 @@
* nano * nano
* psql * psql
* ranger * ranger
* rview
* rvim
* scp * scp
* sh * sh
* ssh * ssh
@ -29,6 +32,7 @@
* tcsh * tcsh
* top * top
* vi * vi
* view
* vim * vim
* vimpager * vimpager
* xo * xo

View file

@ -256,6 +256,7 @@ def default_threadable_predictors():
'clear': predict_false, 'clear': predict_false,
'cls': predict_false, 'cls': predict_false,
'cmd': predict_shell, 'cmd': predict_shell,
'ex': predict_false,
'fish': predict_shell, 'fish': predict_shell,
'htop': predict_help_ver, 'htop': predict_help_ver,
'ksh': predict_shell, 'ksh': predict_shell,
@ -267,6 +268,8 @@ def default_threadable_predictors():
'nano': predict_help_ver, 'nano': predict_help_ver,
'psql': predict_false, 'psql': predict_false,
'ranger': predict_help_ver, 'ranger': predict_help_ver,
'rview': predict_false,
'rvim': predict_false,
'scp': predict_false, 'scp': predict_false,
'sh': predict_shell, 'sh': predict_shell,
'ssh': predict_false, 'ssh': predict_false,
@ -275,6 +278,7 @@ def default_threadable_predictors():
'tcsh': predict_shell, 'tcsh': predict_shell,
'top': predict_help_ver, 'top': predict_help_ver,
'vi': predict_false, 'vi': predict_false,
'view': predict_false,
'vim': predict_false, 'vim': predict_false,
'vimpager': predict_help_ver, 'vimpager': predict_help_ver,
'xo': predict_help_ver, 'xo': predict_help_ver,