├── .gitignore ├── CHANGES ├── LICENSE ├── MANIFEST.in ├── README.rst ├── bin └── snaked ├── completion └── bash │ └── snaked ├── doc ├── Makefile ├── conf.py ├── contacts.rst ├── doc.sh ├── images │ ├── complete.png │ ├── create-new-file.png │ ├── django-hints.png │ ├── editor-prefs.png │ ├── external-tools.png │ ├── first-run.png │ ├── keys.png │ ├── outline1.png │ ├── outline2.png │ ├── plugins.png │ ├── prefs.png │ ├── pygtk-hints.png │ ├── quick-open.png │ ├── search.png │ ├── second-run.png │ ├── snaked.png │ └── unittest.png ├── index.rst ├── install.rst ├── intro.rst ├── plugins.rst ├── python.rst └── start.rst ├── install.sh ├── setup.cfg ├── setup.py ├── snaked ├── __init__.py ├── core │ ├── __init__.py │ ├── app.py │ ├── completer.py │ ├── console.py │ ├── context.py │ ├── contexts.template │ ├── editor.py │ ├── editor_list │ │ ├── __init__.py │ │ ├── gui.glade │ │ └── gui.py │ ├── feedback.py │ ├── gui │ │ ├── __init__.py │ │ ├── editor_prefs.glade │ │ ├── editor_prefs.py │ │ ├── new_file.py │ │ ├── plugin_prefs.glade │ │ ├── plugin_prefs.py │ │ ├── prefs.glade │ │ ├── prefs.py │ │ ├── select_session.glade │ │ └── session_selector.py │ ├── lang-specs │ │ ├── python.lang │ │ ├── rst.lang │ │ └── snippets.lang │ ├── manager.py │ ├── monitor.py │ ├── plugins.py │ ├── prefs.py │ ├── problems.py │ ├── processors.py │ ├── quick_open │ │ ├── __init__.py │ │ ├── gui.glade │ │ ├── gui.py │ │ ├── searcher.py │ │ └── settings.py │ ├── run.py │ ├── spot.py │ ├── titler.py │ └── window.py ├── plugins │ ├── __init__.py │ ├── complete_words │ │ ├── __init__.py │ │ └── words.py │ ├── edit_and_select │ │ ├── __init__.py │ │ ├── bracket_matcher.py │ │ ├── smart_select.py │ │ └── util.py │ ├── external_tools │ │ ├── __init__.py │ │ ├── external.tools.template │ │ ├── parser.py │ │ └── plugin.py │ ├── goto_line │ │ └── __init__.py │ ├── hash_comment │ │ └── __init__.py │ ├── python │ │ ├── __init__.py │ │ ├── complete.py │ │ ├── djangohints.py │ │ ├── dochints.py │ │ ├── launcher │ │ │ └── pt.py │ │ ├── outline.glade │ │ ├── outline.py │ │ ├── plugin.py │ │ ├── pygtk_stubs.py │ │ ├── pygtkhints.py │ │ ├── pytest_launcher.py │ │ ├── pytest_runner.glade │ │ ├── pytest_runner.py │ │ ├── ropehints.py │ │ ├── ropehints_tpl.py │ │ ├── stub.py │ │ └── utils.py │ ├── python_bcsp │ │ └── __init__.py │ ├── python_ipython │ │ ├── __init__.py │ │ └── ipython_view.py │ ├── python_lint │ │ └── __init__.py │ ├── python_repl │ │ ├── __init__.py │ │ └── executor.py │ ├── save_positions │ │ └── __init__.py │ ├── search │ │ └── __init__.py │ ├── snippets │ │ ├── __init__.py │ │ ├── parser.py │ │ ├── prefs.glade │ │ ├── prefs.py │ │ └── snippets │ │ │ ├── django.snippets │ │ │ ├── html.snippets │ │ │ ├── mako.snippets │ │ │ └── python.snippets │ └── spell │ │ └── __init__.py ├── signals │ ├── __init__.py │ ├── signals.py │ ├── util.py │ └── weak.py └── util │ ├── __init__.py │ └── pairs_parser.py └── tests ├── __init__.py ├── djangotest ├── __init__.py └── models.py ├── patcher ├── __init__.py └── first.py ├── pygtktest ├── sample.glade └── sample2.glade ├── python_test ├── first.py └── module_with_errors.py ├── scopetest.py ├── test_bracket_matcher.py ├── test_djangohints.py ├── test_external_tool.py ├── test_processors.py ├── test_pydochints.py ├── test_pygtkhints.py ├── test_pysettings.py ├── test_pytest.py ├── test_python_repl.py ├── test_scopehints.py ├── test_signals.py ├── test_snippets.py └── test_titler.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/CHANGES -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/README.rst -------------------------------------------------------------------------------- /bin/snaked: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/bin/snaked -------------------------------------------------------------------------------- /completion/bash/snaked: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/completion/bash/snaked -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/doc/conf.py -------------------------------------------------------------------------------- /doc/contacts.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/doc/contacts.rst -------------------------------------------------------------------------------- /doc/doc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/doc/doc.sh -------------------------------------------------------------------------------- /doc/images/complete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/doc/images/complete.png -------------------------------------------------------------------------------- /doc/images/create-new-file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/doc/images/create-new-file.png -------------------------------------------------------------------------------- /doc/images/django-hints.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/doc/images/django-hints.png -------------------------------------------------------------------------------- /doc/images/editor-prefs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/doc/images/editor-prefs.png -------------------------------------------------------------------------------- /doc/images/external-tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/doc/images/external-tools.png -------------------------------------------------------------------------------- /doc/images/first-run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/doc/images/first-run.png -------------------------------------------------------------------------------- /doc/images/keys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/doc/images/keys.png -------------------------------------------------------------------------------- /doc/images/outline1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/doc/images/outline1.png -------------------------------------------------------------------------------- /doc/images/outline2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/doc/images/outline2.png -------------------------------------------------------------------------------- /doc/images/plugins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/doc/images/plugins.png -------------------------------------------------------------------------------- /doc/images/prefs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/doc/images/prefs.png -------------------------------------------------------------------------------- /doc/images/pygtk-hints.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/doc/images/pygtk-hints.png -------------------------------------------------------------------------------- /doc/images/quick-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/doc/images/quick-open.png -------------------------------------------------------------------------------- /doc/images/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/doc/images/search.png -------------------------------------------------------------------------------- /doc/images/second-run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/doc/images/second-run.png -------------------------------------------------------------------------------- /doc/images/snaked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/doc/images/snaked.png -------------------------------------------------------------------------------- /doc/images/unittest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/doc/images/unittest.png -------------------------------------------------------------------------------- /doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/doc/index.rst -------------------------------------------------------------------------------- /doc/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/doc/install.rst -------------------------------------------------------------------------------- /doc/intro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/doc/intro.rst -------------------------------------------------------------------------------- /doc/plugins.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/doc/plugins.rst -------------------------------------------------------------------------------- /doc/python.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/doc/python.rst -------------------------------------------------------------------------------- /doc/start.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/doc/start.rst -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/install.sh -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/setup.py -------------------------------------------------------------------------------- /snaked/__init__.py: -------------------------------------------------------------------------------- 1 | VERSION = '0.5dev' -------------------------------------------------------------------------------- /snaked/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /snaked/core/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/snaked/core/app.py -------------------------------------------------------------------------------- /snaked/core/completer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/snaked/core/completer.py -------------------------------------------------------------------------------- /snaked/core/console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/snaked/core/console.py -------------------------------------------------------------------------------- /snaked/core/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/snaked/core/context.py -------------------------------------------------------------------------------- /snaked/core/contexts.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/snaked/core/contexts.template -------------------------------------------------------------------------------- /snaked/core/editor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/snaked/core/editor.py -------------------------------------------------------------------------------- /snaked/core/editor_list/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/snaked/core/editor_list/__init__.py -------------------------------------------------------------------------------- /snaked/core/editor_list/gui.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/snaked/core/editor_list/gui.glade -------------------------------------------------------------------------------- /snaked/core/editor_list/gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/snaked/core/editor_list/gui.py -------------------------------------------------------------------------------- /snaked/core/feedback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/snaked/core/feedback.py -------------------------------------------------------------------------------- /snaked/core/gui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /snaked/core/gui/editor_prefs.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/snaked/core/gui/editor_prefs.glade -------------------------------------------------------------------------------- /snaked/core/gui/editor_prefs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/snaked/core/gui/editor_prefs.py -------------------------------------------------------------------------------- /snaked/core/gui/new_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/snaked/core/gui/new_file.py -------------------------------------------------------------------------------- /snaked/core/gui/plugin_prefs.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/snaked/core/gui/plugin_prefs.glade -------------------------------------------------------------------------------- /snaked/core/gui/plugin_prefs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/snaked/core/gui/plugin_prefs.py -------------------------------------------------------------------------------- /snaked/core/gui/prefs.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/snaked/core/gui/prefs.glade -------------------------------------------------------------------------------- /snaked/core/gui/prefs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/snaked/core/gui/prefs.py -------------------------------------------------------------------------------- /snaked/core/gui/select_session.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/snaked/core/gui/select_session.glade -------------------------------------------------------------------------------- /snaked/core/gui/session_selector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/snaked/core/gui/session_selector.py -------------------------------------------------------------------------------- /snaked/core/lang-specs/python.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/snaked/core/lang-specs/python.lang -------------------------------------------------------------------------------- /snaked/core/lang-specs/rst.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/snaked/core/lang-specs/rst.lang -------------------------------------------------------------------------------- /snaked/core/lang-specs/snippets.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/snaked/core/lang-specs/snippets.lang -------------------------------------------------------------------------------- /snaked/core/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/snaked/core/manager.py -------------------------------------------------------------------------------- /snaked/core/monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/snaked/core/monitor.py -------------------------------------------------------------------------------- /snaked/core/plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/snaked/core/plugins.py -------------------------------------------------------------------------------- /snaked/core/prefs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/snaked/core/prefs.py -------------------------------------------------------------------------------- /snaked/core/problems.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/snaked/core/problems.py -------------------------------------------------------------------------------- /snaked/core/processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/snaked/core/processors.py -------------------------------------------------------------------------------- /snaked/core/quick_open/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/snaked/core/quick_open/__init__.py -------------------------------------------------------------------------------- /snaked/core/quick_open/gui.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/snaked/core/quick_open/gui.glade -------------------------------------------------------------------------------- /snaked/core/quick_open/gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/snaked/core/quick_open/gui.py -------------------------------------------------------------------------------- /snaked/core/quick_open/searcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/snaked/core/quick_open/searcher.py -------------------------------------------------------------------------------- /snaked/core/quick_open/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/snaked/core/quick_open/settings.py -------------------------------------------------------------------------------- /snaked/core/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/snaked/core/run.py -------------------------------------------------------------------------------- /snaked/core/spot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/snaked/core/spot.py -------------------------------------------------------------------------------- /snaked/core/titler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/snaked/core/titler.py -------------------------------------------------------------------------------- /snaked/core/window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/snaked/core/window.py -------------------------------------------------------------------------------- /snaked/plugins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /snaked/plugins/complete_words/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/snaked/plugins/complete_words/__init__.py -------------------------------------------------------------------------------- /snaked/plugins/complete_words/words.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/snaked/plugins/complete_words/words.py -------------------------------------------------------------------------------- /snaked/plugins/edit_and_select/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/snaked/plugins/edit_and_select/__init__.py -------------------------------------------------------------------------------- /snaked/plugins/edit_and_select/bracket_matcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/snaked/plugins/edit_and_select/bracket_matcher.py -------------------------------------------------------------------------------- /snaked/plugins/edit_and_select/smart_select.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/snaked/plugins/edit_and_select/smart_select.py -------------------------------------------------------------------------------- /snaked/plugins/edit_and_select/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/snaked/plugins/edit_and_select/util.py -------------------------------------------------------------------------------- /snaked/plugins/external_tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/snaked/plugins/external_tools/__init__.py -------------------------------------------------------------------------------- /snaked/plugins/external_tools/external.tools.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/snaked/plugins/external_tools/external.tools.template -------------------------------------------------------------------------------- /snaked/plugins/external_tools/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/snaked/plugins/external_tools/parser.py -------------------------------------------------------------------------------- /snaked/plugins/external_tools/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/snaked/plugins/external_tools/plugin.py -------------------------------------------------------------------------------- /snaked/plugins/goto_line/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/snaked/plugins/goto_line/__init__.py -------------------------------------------------------------------------------- /snaked/plugins/hash_comment/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/snaked/plugins/hash_comment/__init__.py -------------------------------------------------------------------------------- /snaked/plugins/python/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/snaked/plugins/python/__init__.py -------------------------------------------------------------------------------- /snaked/plugins/python/complete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/snaked/plugins/python/complete.py -------------------------------------------------------------------------------- /snaked/plugins/python/djangohints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/snaked/plugins/python/djangohints.py -------------------------------------------------------------------------------- /snaked/plugins/python/dochints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/snaked/plugins/python/dochints.py -------------------------------------------------------------------------------- /snaked/plugins/python/launcher/pt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/snaked/plugins/python/launcher/pt.py -------------------------------------------------------------------------------- /snaked/plugins/python/outline.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/snaked/plugins/python/outline.glade -------------------------------------------------------------------------------- /snaked/plugins/python/outline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/snaked/plugins/python/outline.py -------------------------------------------------------------------------------- /snaked/plugins/python/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/snaked/plugins/python/plugin.py -------------------------------------------------------------------------------- /snaked/plugins/python/pygtk_stubs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/snaked/plugins/python/pygtk_stubs.py -------------------------------------------------------------------------------- /snaked/plugins/python/pygtkhints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/snaked/plugins/python/pygtkhints.py -------------------------------------------------------------------------------- /snaked/plugins/python/pytest_launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/snaked/plugins/python/pytest_launcher.py -------------------------------------------------------------------------------- /snaked/plugins/python/pytest_runner.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/snaked/plugins/python/pytest_runner.glade -------------------------------------------------------------------------------- /snaked/plugins/python/pytest_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/snaked/plugins/python/pytest_runner.py -------------------------------------------------------------------------------- /snaked/plugins/python/ropehints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/snaked/plugins/python/ropehints.py -------------------------------------------------------------------------------- /snaked/plugins/python/ropehints_tpl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/snaked/plugins/python/ropehints_tpl.py -------------------------------------------------------------------------------- /snaked/plugins/python/stub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/snaked/plugins/python/stub.py -------------------------------------------------------------------------------- /snaked/plugins/python/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/snaked/plugins/python/utils.py -------------------------------------------------------------------------------- /snaked/plugins/python_bcsp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/snaked/plugins/python_bcsp/__init__.py -------------------------------------------------------------------------------- /snaked/plugins/python_ipython/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/snaked/plugins/python_ipython/__init__.py -------------------------------------------------------------------------------- /snaked/plugins/python_ipython/ipython_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/snaked/plugins/python_ipython/ipython_view.py -------------------------------------------------------------------------------- /snaked/plugins/python_lint/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/snaked/plugins/python_lint/__init__.py -------------------------------------------------------------------------------- /snaked/plugins/python_repl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/snaked/plugins/python_repl/__init__.py -------------------------------------------------------------------------------- /snaked/plugins/python_repl/executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/snaked/plugins/python_repl/executor.py -------------------------------------------------------------------------------- /snaked/plugins/save_positions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/snaked/plugins/save_positions/__init__.py -------------------------------------------------------------------------------- /snaked/plugins/search/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/snaked/plugins/search/__init__.py -------------------------------------------------------------------------------- /snaked/plugins/snippets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/snaked/plugins/snippets/__init__.py -------------------------------------------------------------------------------- /snaked/plugins/snippets/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/snaked/plugins/snippets/parser.py -------------------------------------------------------------------------------- /snaked/plugins/snippets/prefs.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/snaked/plugins/snippets/prefs.glade -------------------------------------------------------------------------------- /snaked/plugins/snippets/prefs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/snaked/plugins/snippets/prefs.py -------------------------------------------------------------------------------- /snaked/plugins/snippets/snippets/django.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/snaked/plugins/snippets/snippets/django.snippets -------------------------------------------------------------------------------- /snaked/plugins/snippets/snippets/html.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/snaked/plugins/snippets/snippets/html.snippets -------------------------------------------------------------------------------- /snaked/plugins/snippets/snippets/mako.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/snaked/plugins/snippets/snippets/mako.snippets -------------------------------------------------------------------------------- /snaked/plugins/snippets/snippets/python.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/snaked/plugins/snippets/snippets/python.snippets -------------------------------------------------------------------------------- /snaked/plugins/spell/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/snaked/plugins/spell/__init__.py -------------------------------------------------------------------------------- /snaked/signals/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/snaked/signals/__init__.py -------------------------------------------------------------------------------- /snaked/signals/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/snaked/signals/signals.py -------------------------------------------------------------------------------- /snaked/signals/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/snaked/signals/util.py -------------------------------------------------------------------------------- /snaked/signals/weak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/snaked/signals/weak.py -------------------------------------------------------------------------------- /snaked/util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/snaked/util/__init__.py -------------------------------------------------------------------------------- /snaked/util/pairs_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/snaked/util/pairs_parser.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/djangotest/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/djangotest/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/tests/djangotest/models.py -------------------------------------------------------------------------------- /tests/patcher/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/patcher/first.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/tests/patcher/first.py -------------------------------------------------------------------------------- /tests/pygtktest/sample.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/tests/pygtktest/sample.glade -------------------------------------------------------------------------------- /tests/pygtktest/sample2.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/tests/pygtktest/sample2.glade -------------------------------------------------------------------------------- /tests/python_test/first.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/tests/python_test/first.py -------------------------------------------------------------------------------- /tests/python_test/module_with_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/tests/python_test/module_with_errors.py -------------------------------------------------------------------------------- /tests/scopetest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/tests/scopetest.py -------------------------------------------------------------------------------- /tests/test_bracket_matcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/tests/test_bracket_matcher.py -------------------------------------------------------------------------------- /tests/test_djangohints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/tests/test_djangohints.py -------------------------------------------------------------------------------- /tests/test_external_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/tests/test_external_tool.py -------------------------------------------------------------------------------- /tests/test_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/tests/test_processors.py -------------------------------------------------------------------------------- /tests/test_pydochints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/tests/test_pydochints.py -------------------------------------------------------------------------------- /tests/test_pygtkhints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/tests/test_pygtkhints.py -------------------------------------------------------------------------------- /tests/test_pysettings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/tests/test_pysettings.py -------------------------------------------------------------------------------- /tests/test_pytest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/tests/test_pytest.py -------------------------------------------------------------------------------- /tests/test_python_repl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/tests/test_python_repl.py -------------------------------------------------------------------------------- /tests/test_scopehints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/tests/test_scopehints.py -------------------------------------------------------------------------------- /tests/test_signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/tests/test_signals.py -------------------------------------------------------------------------------- /tests/test_snippets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/tests/test_snippets.py -------------------------------------------------------------------------------- /tests/test_titler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baverman/snaked/HEAD/tests/test_titler.py --------------------------------------------------------------------------------