diff --git a/contrib/lang/python/README.md b/contrib/lang/python/README.md index ec6b29f1c..e4a99a478 100644 --- a/contrib/lang/python/README.md +++ b/contrib/lang/python/README.md @@ -75,17 +75,17 @@ Test commands (start with `m t` or `m T`): ------------------|------------------------------------------------------------ m t a | launch all tests of the project m t b | launch all tests of the current buffer (same as module) - m t f | launch the current test (function) m t m | launch all tests of the current module m t s | launch all tests of the current suite + m t t | launch the current test (function) Debug | Description ------------------|------------------------------------------------------------ m T a | launch all tests of the project in debug mode m T b | launch all tests of the current buffer (module) in debug mode - m T f | launch the current test (function) in debug mode m T m | launch all tests of the current module in debug mode m T s | launch all tests of the current suite in debug mode + m T t | launch the current test (function) in debug mode ### Other Python commands diff --git a/contrib/lang/python/extensions.el b/contrib/lang/python/extensions.el index bb6ad8eea..1ef8669d7 100644 --- a/contrib/lang/python/extensions.el +++ b/contrib/lang/python/extensions.el @@ -30,8 +30,8 @@ "mta" 'nosetests-all "mTb" 'nosetests-pdb-module "mtb" 'nosetests-module - "mTf" 'nosetests-pdb-one - "mtf" 'nosetests-one + "mTt" 'nosetests-pdb-one + "mtt" 'nosetests-one "mTm" 'nosetests-pdb-module "mtm" 'nosetests-module "mTs" 'nosetests-pdb-suite diff --git a/contrib/lang/ruby/packages.el b/contrib/lang/ruby/packages.el index 08f751300..bdf2c1b21 100644 --- a/contrib/lang/ruby/packages.el +++ b/contrib/lang/ruby/packages.el @@ -52,5 +52,5 @@ which require an initialization must be listed explicitly in the list.") (defun ruby/init-ruby-test-mode () "Define keybindings for ruby test mode" (use-package ruby-test-mode - :config (progn (evil-leader/set-key "mtf" 'ruby-test-run) - (evil-leader/set-key "mtp" 'ruby-test-run-at-point)))) + :config (progn (evil-leader/set-key "mtb" 'ruby-test-run) + (evil-leader/set-key "mtt" 'ruby-test-run-at-point))))