-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
coqtail got support for a user-override for mappings (whonore/Coqtail@d27e33d) but it won't do what I want (which is to prevent those mappings from being created in the first place). So I'm electing to keep my mess for now. I think if coqtail checked mapcheck(l:prefix..l:key) before creating maps, I could use their hook to unmap the ones I wanted (but only if they're mapped to coqtail things)?
- Loading branch information
Showing
16 changed files
with
16 additions
and
16 deletions.
There are no files selected for viewing
Submodule dracula
updated
3 files
+47 −2 | after/plugin/dracula.vim | |
+24 −0 | colors/dracula.vim | |
+4 −0 | doc/dracula.txt |
Submodule coqtail
updated
16 files
+5 −4 | .github/workflows/coq-tests.yml | |
+2 −2 | .github/workflows/lint.yml | |
+2 −2 | .github/workflows/python-tests.yml | |
+5 −4 | .github/workflows/vim-tests.yml | |
+2 −0 | .pylintrc | |
+14 −0 | CHANGELOG.md | |
+31 −4 | README.md | |
+11 −1 | autoload/coqtail.vim | |
+6 −2 | ci/vim.nix | |
+14 −0 | doc/coqtail.txt | |
+19 −7 | python/coqtail.py | |
+110 −30 | python/coqtop.py | |
+22 −12 | python/xmlInterface.py | |
+3 −1 | setup.cfg | |
+2 −5 | tests/unit/test_parse.py | |
+1 −1 | tox.ini |
Submodule cs-omnisharp
updated
10 files
Submodule ale
updated
from 53b01d to 5e8904
Submodule splitjoin
updated
16 files
+10 −10 | Gemfile.lock | |
+3 −1 | README.md | |
+7 −0 | autoload/sj.vim | |
+143 −0 | autoload/sj/cue.vim | |
+153 −12 | autoload/sj/python.vim | |
+14 −6 | autoload/sj/ruby.vim | |
+18 −0 | autoload/sj/sh.vim | |
+33 −8 | autoload/sj/vim.vim | |
+90 −2 | doc/splitjoin.txt | |
+16 −0 | ftplugin/cue/splitjoin.vim | |
+3 −0 | ftplugin/python/splitjoin.vim | |
+2 −0 | ftplugin/sh/splitjoin.vim | |
+1 −0 | plugin/splitjoin.vim | |
+61 −5 | spec/plugin/python_spec.rb | |
+48 −2 | spec/plugin/sh_spec.rb | |
+44 −0 | spec/plugin/vim_spec.rb |
Submodule undotree
updated
5 files
+28 −0 | LICENSE | |
+2 −0 | README.md | |
+31 −2 | autoload/undotree.vim | |
+40 −2 | doc/undotree.txt | |
+23 −6 | plugin/undotree.vim |