资源简介
vim config
代码片段和文件信息
#!/usr/bin/env python
from __future__ import print_function
from sys import argv exit
import codecs
import re
import os
if len(argv) != 2:
exit(1)
try:
with open(argv[1]) as fle:
text = fle.readlines()
if text:
match = re.match(r“#\s*coding\s*:\s*(?P\w+)“ text[0])
if match:
text = codecs.lookup(match.groupdict()[“coding“]).incrementaldecoder().decode(
‘‘.join(text).encode(‘utf-8‘)).encode(‘utf-8‘)
if isinstance(text list):
text = ‘‘.join(text).encode(‘utf-8‘)
compile(text argv[1] ‘exec‘ 0 1)
except SyntaxError as err:
print(‘%s:%s:%s: %s‘ % (err.filename err.lineno err.offset err.msg))
except Exception as err:
print(‘%s:%s:%s: %s‘ % (os.path.abspath(argv[1]) 1 0 err))
相关资源
- HP Array Configuration Utility 32位 64位
- QtOpencvImageGUI
- vim的神级配置
- GPS Configurator
- HyperLedger/Fabric Platform-specific Binaries
- vim for windows 32位和64位的都有
- MATRIX VISION相机mvIMPACT驱动SDK调用例程
- ConfigTool.rar
- Configuration Wizard 2
- 学习Vi 和 Vim 编辑器中文版第7版
-
Learn Vimsc
ript the Hard Way - INAV Configurator 2.0.0 中文版本
- 学习VI和VIM编辑器(第七版中文)
- hyperledgerFabric-1.4的bin和config
- Eplan P8 GM Configuration V1.006
- Vim绿色带插件版配置完好直接使用g
- vim配置成强大的IDE
- iPhoneConfigUtility.dmg.zip
- 使用博途组态上位机与PLC之间的基于
- F5中文配置手册LTM_config_guide-SC.pdf
- Betaflight Configurator
- GX Configurator-DP 7.09K
- Allied Vision相机的Vimba独立软件开发工
- Configure EndNote.exe
- vim config v2
- VMware-VIM-all-6.5.0-14020092.txt
- 打造linux下的Source Insight
- GVIM中高亮log文件的语法配置
- 拯救者14iskconfig
- vimrc配置文件
评论
共有 条评论