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
* cls
* cmd
* ex
* fish
* htop
* ksh
@ -21,6 +22,8 @@
* nano
* psql
* ranger
* rview
* rvim
* scp
* sh
* ssh
@ -29,6 +32,7 @@
* tcsh
* top
* vi
* view
* vim
* vimpager
* xo

View file

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