Skip to content

Commit d77a6cc

Browse files
committed
Fix string exclusion to include byte strings
1 parent 8801fc9 commit d77a6cc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

indent/python.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ let s:skip_special_chars = 'synIDattr(synID(line("."), col("."), 0), "name") ' .
6161
\ '=~? "\\vstring|comment|jedi\\S"'
6262

6363
let s:skip_string = 'synIDattr(synID(line("."), col("."), 0), "name") ' .
64-
\ '=~? "String"'
64+
\ '=~? "\\vstring|bytes\\S"'
6565
let s:skip_after_opening_paren = 'synIDattr(synID(line("."), col("."), 0), "name") ' .
6666
\ '=~? "\\vcomment|jedi\\S"'
6767

0 commit comments

Comments
 (0)