Randy Lai
Randy Lai
Just release v0.3.27, see if it fixes your issue.
Just put the following in your keybind ```js { "keys": ["escape"], "command": "terminus_keypress", "args": {"key": "escape"}, "context": [ { "key": "terminus_view" } ] }, ```
It should work unless another package has overrided it. Run `sublime.log_commands(True)` in the sublime console to see what command was executed.
Did you copy the hide_panel escape keybind?
Oh, I may have misunderstood you. I thought `escape` closes Terminus panel when it is in focus. It is an issue of Sublime Text. `escape` will hide any output panel...
Let’s keep it open
I am not sure what you want to achieve. You need to make sure that the tests are organized such as they could be discovered by [`discover`](https://docs.python.org/3.3/library/unittest.html#unittest.TestLoader.discover).
Are you sure that the test cases are discoverable? AKAIK, unittest discover only search files named as `test*.py`. EDIT: I saw that you have changed the [pattern](https://github.com/ehuss/Sublime-Wrap-Plus/pull/66/files#diff-283983243cc8284b5389c88df979e462R3) for discovery.
I checked out your master branch: https://github.com/evandrocoan/Sublime-Wrap-Plus/tree/master and UnitTesting was working properly. ``` test_balance_characters_between_line_wraps_commented_line (semantic_linefeed_unit_tests.LineBalancingUnitTests) ... ok test_balance_characters_between_line_wraps_ending_with_long_word (semantic_linefeed_unit_tests.LineBalancingUnitTests) ... ok test_balance_characters_between_line_wraps_starting_with_comment (semantic_linefeed_unit_tests.LineBalancingUnitTests) ... ok test_balance_characters_between_line_wraps_with_big_multi_line_balancing (semantic_linefeed_unit_tests.LineBalancingUnitTests) ... ok test_balance_characters_between_line_wraps_with_comment_indentation_balance...
I checked out https://github.com/evandrocoan/ClearCursorsCarets and UnitTesting was also working. ``` ................ ---------------------------------------------------------------------- Ran 16 tests in 0.133s OK UnitTesting: Done. ```