Python+rope:设置忽略的资源模式?

2024-06-09 21:22:44 发布

您现在位置:Python中文网/ 问答频道 /正文

这个rope documentation说:

Each project has a set of ignored resource patterns

但是它没有提到如何配置这个列表。你知道吗

如何为我的项目配置被忽略资源的列表?你知道吗


Tags: of项目project列表documentation资源resourcepatterns
2条回答

每个项目都有一个隐藏的子目录.ropeproject/。看看那里的config.py文件。这个文件有很好的记录。你知道吗

~/.ropeproject/config.py中有一个ignored_resources设置,它似乎起到了作用:

# Specify which files and folders to ignore in the project.
# Changes to ignored resources are not added to the history and
# VCSs.  Also they are not returned in `Project.get_files()`.
# Note that ``?`` and ``*`` match all characters but slashes.
# '*.pyc': matches 'test.pyc' and 'pkg/test.pyc'
# 'mod*.pyc': matches 'test/mod1.pyc' but not 'mod/1.pyc'
# '.svn': matches 'pkg/.svn' and all of its children
# 'build/*.o': matches 'build/lib.o' but not 'build/sub/lib.o'
# 'build//*.o': matches 'build/lib.o' and 'build/sub/lib.o'
prefs['ignored_resources'] = ['*.pyc', '*~', '.ropeproject',
                              '.hg', '.svn', '_svn', '.git', '.tox']

相关问题 更多 >