Skip to content

Commit 7a1ee8c

Browse files
committed
Fix undefined variable case
1 parent b2d0250 commit 7a1ee8c

File tree

4 files changed

+8
-1
lines changed

4 files changed

+8
-1
lines changed

CHANGES.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# ScopeHunter
22

3+
## 2.16.1
4+
5+
- **FIX**: Fix issue with latest refactor where a variable was not always defined.
6+
37
## 2.16
48

59
- **NEW**: Due to Sublime schemes ever evolving, there were a few things (like "forward fill" scopes) that we didn't

mkdocs.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ theme:
2121
code: Roboto Mono
2222
features:
2323
- navigation.tabs
24+
- navigation.top
2425

2526
nav:
2627
- Home:

scope_hunter.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -700,6 +700,8 @@ def run(self, v):
700700

701701
if self.scheme_info or self.rowcol_info or self.points_info or self.file_path_info:
702702
tail = mdpopups.md2html(self.view, COPY_ALL)
703+
else:
704+
tail = ''
703705

704706
mdpopups.show_popup(
705707
self.view,

support.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import webbrowser
66
import re
77

8-
__version__ = "2.16.0"
8+
__version__ = "2.16.1"
99
__pc_name__ = 'ScopeHunter'
1010

1111

0 commit comments

Comments
 (0)