├── .ciocheck ├── .coveragerc ├── .github ├── FUNDING.yml └── workflows │ ├── linux-tests.yml │ ├── macos-tests.yml │ └── windows-tests.yml ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.txt ├── MANIFEST.in ├── README.md ├── RELEASE.md ├── doc └── example.gif ├── requirements ├── conda.txt └── tests.txt ├── runtests.py ├── setup.py ├── spyder_vim ├── __init__.py └── spyder │ ├── __init__.py │ ├── api.py │ ├── confpage.py │ ├── container.py │ ├── plugin.py │ └── widgets.py └── tests └── spyder-vim ├── __init__.py ├── foo.txt └── test_widgets.py /.ciocheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spyder-ide/spyder-vim/HEAD/.ciocheck -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | omit = */tests/* 3 | 4 | [report] 5 | fail_under=0 -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | open_collective: spyder 2 | -------------------------------------------------------------------------------- /.github/workflows/linux-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spyder-ide/spyder-vim/HEAD/.github/workflows/linux-tests.yml -------------------------------------------------------------------------------- /.github/workflows/macos-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spyder-ide/spyder-vim/HEAD/.github/workflows/macos-tests.yml -------------------------------------------------------------------------------- /.github/workflows/windows-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spyder-ide/spyder-vim/HEAD/.github/workflows/windows-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spyder-ide/spyder-vim/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spyder-ide/spyder-vim/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spyder-ide/spyder-vim/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spyder-ide/spyder-vim/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spyder-ide/spyder-vim/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spyder-ide/spyder-vim/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spyder-ide/spyder-vim/HEAD/RELEASE.md -------------------------------------------------------------------------------- /doc/example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spyder-ide/spyder-vim/HEAD/doc/example.gif -------------------------------------------------------------------------------- /requirements/conda.txt: -------------------------------------------------------------------------------- 1 | qtawesome 2 | qtpy 3 | pip 4 | setuptools 5 | spyder>=6.0.0 6 | -------------------------------------------------------------------------------- /requirements/tests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spyder-ide/spyder-vim/HEAD/requirements/tests.txt -------------------------------------------------------------------------------- /runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spyder-ide/spyder-vim/HEAD/runtests.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spyder-ide/spyder-vim/HEAD/setup.py -------------------------------------------------------------------------------- /spyder_vim/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spyder-ide/spyder-vim/HEAD/spyder_vim/__init__.py -------------------------------------------------------------------------------- /spyder_vim/spyder/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spyder-ide/spyder-vim/HEAD/spyder_vim/spyder/__init__.py -------------------------------------------------------------------------------- /spyder_vim/spyder/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spyder-ide/spyder-vim/HEAD/spyder_vim/spyder/api.py -------------------------------------------------------------------------------- /spyder_vim/spyder/confpage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spyder-ide/spyder-vim/HEAD/spyder_vim/spyder/confpage.py -------------------------------------------------------------------------------- /spyder_vim/spyder/container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spyder-ide/spyder-vim/HEAD/spyder_vim/spyder/container.py -------------------------------------------------------------------------------- /spyder_vim/spyder/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spyder-ide/spyder-vim/HEAD/spyder_vim/spyder/plugin.py -------------------------------------------------------------------------------- /spyder_vim/spyder/widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spyder-ide/spyder-vim/HEAD/spyder_vim/spyder/widgets.py -------------------------------------------------------------------------------- /tests/spyder-vim/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spyder-ide/spyder-vim/HEAD/tests/spyder-vim/__init__.py -------------------------------------------------------------------------------- /tests/spyder-vim/foo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spyder-ide/spyder-vim/HEAD/tests/spyder-vim/foo.txt -------------------------------------------------------------------------------- /tests/spyder-vim/test_widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spyder-ide/spyder-vim/HEAD/tests/spyder-vim/test_widgets.py --------------------------------------------------------------------------------