├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── requirements.txt ├── scripts ├── gnvim.vmux ├── gvim.vmux ├── kak.vmux ├── nvim-qt.vmux ├── nvim.vmux ├── nvr.vmux └── vim.vmux ├── setup.cfg ├── setup.py ├── tests └── test_dummy.py └── vmux ├── __init__.py └── __main__.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jceb/vmux/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jceb/vmux/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jceb/vmux/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jceb/vmux/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jceb/vmux/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jceb/vmux/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | # pynvim 2 | -------------------------------------------------------------------------------- /scripts/gnvim.vmux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jceb/vmux/HEAD/scripts/gnvim.vmux -------------------------------------------------------------------------------- /scripts/gvim.vmux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jceb/vmux/HEAD/scripts/gvim.vmux -------------------------------------------------------------------------------- /scripts/kak.vmux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jceb/vmux/HEAD/scripts/kak.vmux -------------------------------------------------------------------------------- /scripts/nvim-qt.vmux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jceb/vmux/HEAD/scripts/nvim-qt.vmux -------------------------------------------------------------------------------- /scripts/nvim.vmux: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | set -euo pipefail 3 | VMUX_EDITOR="nvim" exec vmux "$@" 4 | -------------------------------------------------------------------------------- /scripts/nvr.vmux: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | set -euo pipefail 3 | VMUX_EDITOR="nvr" exec vmux "$@" 4 | -------------------------------------------------------------------------------- /scripts/vim.vmux: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | set -euo pipefail 3 | VMUX_EDITOR="vim" exec vmux "$@" 4 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jceb/vmux/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jceb/vmux/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test_dummy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jceb/vmux/HEAD/tests/test_dummy.py -------------------------------------------------------------------------------- /vmux/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jceb/vmux/HEAD/vmux/__init__.py -------------------------------------------------------------------------------- /vmux/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jceb/vmux/HEAD/vmux/__main__.py --------------------------------------------------------------------------------