diff options
Diffstat (limited to 'scripts/get_vimkw.py')
-rw-r--r-- | scripts/get_vimkw.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/get_vimkw.py b/scripts/get_vimkw.py index a8e38c26..1ecf7148 100644 --- a/scripts/get_vimkw.py +++ b/scripts/get_vimkw.py @@ -1,7 +1,8 @@ import re from pprint import pprint -r_line = re.compile(r"^(syn keyword vimCommand contained|syn keyword vimOption contained|syn keyword vimAutoEvent contained)\s+(.*)") +r_line = re.compile(r"^(syn keyword vimCommand contained|syn keyword vimOption " + r"contained|syn keyword vimAutoEvent contained)\s+(.*)") r_item = re.compile(r"(\w+)(?:\[(\w+)\])?") def getkw(input, output): |