File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -816,7 +816,7 @@ def process_key_event(self, e: str) -> None:
816816
817817 def is_closing_quote (self , e : str ) -> bool :
818818 char_count = self ._current_line .count (e )
819- return (
819+ return (
820820 char_count % 2 == 0
821821 and cursor_on_closing_char_pair (
822822 self ._cursor_offset , self ._current_line , e
@@ -843,7 +843,9 @@ def insert_char_pair_start(self, e):
843843 else self ._current_line [self ._cursor_offset ]
844844 )
845845 if start_of_line or end_of_line or next_char in "})] " :
846- self .add_normal_character (CHARACTER_PAIR_MAP [e ], narrow_search = False )
846+ self .add_normal_character (
847+ CHARACTER_PAIR_MAP [e ], narrow_search = False
848+ )
847849 self ._cursor_offset -= 1
848850
849851 def insert_char_pair_end (self , e ):
You can’t perform that action at this time.
0 commit comments