diff options
Diffstat (limited to 'scripts/vim2pygments.py')
-rwxr-xr-x | scripts/vim2pygments.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/vim2pygments.py b/scripts/vim2pygments.py index ec9b63b7..42d7d52d 100755 --- a/scripts/vim2pygments.py +++ b/scripts/vim2pygments.py @@ -11,10 +11,11 @@ """ import sys -import re from os import path from io import StringIO +import regex as re + split_re = re.compile(r'(?<!\\)\s+') SCRIPT_NAME = 'Vim Colorscheme Converter' |