mirror of
https://github.com/amix/vimrc
synced 2025-02-28 14:12:51 +08:00
14 lines
287 B
Python
14 lines
287 B
Python
#!/usr/bin/env python
|
|
|
|
from __future__ import print_function
|
|
from sys import argv, exit
|
|
|
|
|
|
if len(argv) != 2:
|
|
exit(1)
|
|
|
|
try:
|
|
compile(open(argv[1]).read(), argv[1], 'exec', 0, 1)
|
|
except SyntaxError as err:
|
|
print('%s:%s:%s: %s' % (err.filename, err.lineno, err.offset, err.msg))
|