From e4efb27db2c7789aff8df0c559109c7711f89ec1 Mon Sep 17 00:00:00 2001 From: Gerard Roche Date: Sat, 18 Jan 2020 04:18:54 +0000 Subject: [PATCH] Fix #11 open starts working like switch (regression) --- CHANGELOG.md | 5 +++++ plugin.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fdc6251..2e541c3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes are documented in this file using the [Keep a CHANGELOG](http://keepachangelog.com/) principles. +## [2.0.3] - 2020-01-18 + +* Added [#11](https://github.com/gerardroche/sublime-open-sesame/issues/11): Open starts working like switch + ## [2.0.2] - 2020-01-13 * Fixed: ST4 fixes @@ -236,6 +240,7 @@ Old settings `open-sesame.*` have been renamed `sesame.*`, these will be auto mi * Initial import +[2.0.3]: https://github.com/gerardroche/sublime-open-sesame/compare/2.0.2...2.0.3 [2.0.2]: https://github.com/gerardroche/sublime-open-sesame/compare/2.0.1...2.0.2 [2.0.1]: https://github.com/gerardroche/sublime-open-sesame/compare/2.0.0...2.0.1 [2.0.0]: https://github.com/gerardroche/sublime-open-sesame/compare/1.8.0...2.0.0 diff --git a/plugin.py b/plugin.py index 4b957d5..3897e6a 100644 --- a/plugin.py +++ b/plugin.py @@ -56,7 +56,7 @@ def on_done(self, index): class SesameOpenCommand(sublime_plugin.WindowCommand): - new_window = False + new_window = True def run(self, **kwargs): self.folders = _find_folders(self.window, **kwargs)