1 parent 2ca068f commit c3f4129Copy full SHA for c3f4129
1 file changed
plugins/SedRegex/sedregex.py
@@ -1,7 +1,9 @@
1
#!/usr/bin/env python3
2
3
+import functools
4
import re
5
6
+@functools.lru_cache
7
def makeSedRegex(delimiters=''):
8
delimiters = delimiters or r"^\w\s"
9
0 commit comments