📄 noncvs.py
字号:
""" Catches most files disallowed in CVS """
type_list = ["icc", "ncb", "opt", "zip", "dsw",
"vcproj", "dsw", "bor", "vcp", "pdb",
"o", "ilk", "pyc", "so", "dll", "lib" ]
from sys import stderr
def handler (file_name, file_content):
stderr.write (file_name + ":0: error: This file should not be checked into the repository\n")
return 1
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -