diff --git a/lib/abbreviation.py b/lib/abbreviation.py index c9693fe..ef04385 100644 --- a/lib/abbreviation.py +++ b/lib/abbreviation.py @@ -521,7 +521,9 @@ def is_enabled(view: sublime.View, pos: int) -> bool: return True syntax_info = syntax.info(view, pos) - if not syntax_info: return False + + if not syntax_info: + return False return syntax_info['type'] == auto_mark