From d6dad309cfb07ee74aba2ed423bc8e15a69808dc Mon Sep 17 00:00:00 2001 From: Anthony Scopatz Date: Wed, 1 Mar 2017 00:11:11 -0500 Subject: [PATCH] ponysay --- news/ponynosay.rst | 14 ++++++++++++++ xonsh/commands_cache.py | 1 + 2 files changed, 15 insertions(+) create mode 100644 news/ponynosay.rst diff --git a/news/ponynosay.rst b/news/ponynosay.rst new file mode 100644 index 000000000..f2263797f --- /dev/null +++ b/news/ponynosay.rst @@ -0,0 +1,14 @@ +**Added:** + +* Added ``ponysay`` as a command which will ususally not run in a + threaded mode in the commands cache. + +**Changed:** None + +**Deprecated:** None + +**Removed:** None + +**Fixed:** None + +**Security:** None diff --git a/xonsh/commands_cache.py b/xonsh/commands_cache.py index 80246aaa3..226772b9b 100644 --- a/xonsh/commands_cache.py +++ b/xonsh/commands_cache.py @@ -354,6 +354,7 @@ def default_threadable_predictors(): 'mutt': predict_help_ver, 'nano': predict_help_ver, 'nvim': predict_false, + 'ponysay': predict_help_ver, 'psql': predict_false, 'python': predict_shell, 'python2': predict_shell,