Skip to content

Commit

Permalink
fix the escape issue with python 3.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hsyan2008 authored and lpil committed Dec 29, 2023
1 parent a8dc763 commit ba72b08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion UltiSnips/java.snippets
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def nl(snip):
snip.rv += " "
def getArgs(group):
import re
word = re.compile('[a-zA-Z0-9><.]+ \w+')
word = re.compile(r'[a-zA-Z0-9><.]+ \w+')
return [i.split(" ") for i in word.findall(group) ]
def camel(word):
Expand Down

0 comments on commit ba72b08

Please sign in to comment.