Package: vim-youcompleteme / 0+20230109+git7620d87+ds-3
Metadata
Package | Version | Patches format |
---|---|---|
vim-youcompleteme | 0+20230109+git7620d87+ds-3 | 3.0 (quilt) |
Patch series
view the series filePatch | File delta | Description |
---|---|---|
0001 Hide diagnostics UI when entering Insert Mode.patch | (download) |
autoload/youcompleteme.vim |
1 1 + 0 - 0 ! |
[patch] hide diagnostics ui when entering insert mode |
0002 Actually fix the problem where changedtick is.patch | (download) |
python/ycm/vimsupport.py |
2 1 + 1 - 0 ! |
[patch] actually fix the problem where changedtick is '' |
0003 Don t change the cursor position if GoTo doesnt have.patch | (download) |
python/ycm/client/command_request.py |
6 6 + 0 - 0 ! |
[patch] don't change the cursor position if goto doesnt have one This fixes the behavour of GoToAlternate file to keep the buffer's cursor position. |
0004 Update ycmd.patch | (download) |
README.md |
4 4 + 0 - 0 ! |
[patch] update ycmd |
0005 Update vim docs.patch | (download) |
doc/youcompleteme.txt |
4 4 + 0 - 0 ! |
[patch] update vim docs |
0006 Fix traceback when diagnostics contain quotes.patch | (download) |
python/ycm/youcompleteme.py |
3 2 + 1 - 0 ! |
[patch] fix traceback when diagnostics contain quotes Fixes #4125 |
0007 retry failed vim tests. they are kinda flaky.patch | (download) |
test/lib/run_test.vim |
30 23 + 7 - 0 ! |
[patch] retry failed vim tests. they are kinda flaky |
0008 Wait even longer for jedi.patch | (download) |
test/finder.test.vim |
15 9 + 6 - 0 ! |
[patch] wait even longer for jedi |
0010 Build containers for current architecture.patch | (download) |
.github/workflows/ci.yml |
3 2 + 1 - 0 ! |
[patch] build containers for current architecture |
00 path to server script.patch | (download) |
.ycm_extra_conf.py |
72 0 + 72 - 0 ! |
use debian's ycmd package locations for ycmd. We neither have the third_party directory for vim-youcompleteme nor for ycmd, so we can't import them and we don't want to either. . This means we can drop lots and lots of complicated code as we know by virtue of dependencies where everything is and that it is good |
01 allow tests to be run.patch | (download) |
python/ycm/tests/paths_test.py |
42 0 + 42 - 0 ! |
use debian's ycmd package locations for ycmd in tests We neither have the third_party directory for vim-youcompleteme nor for ycmd, so we can't import them and we don't want to either. . The two python tests are removed as we have always Python installed in Debian due to dependencies and the tests can for some reason not override this properly. |
02 allow to retry failed test runs.patch | (download) |
test/run_vim_tests |
76 49 + 27 - 0 ! |
allow retrying failed vim tests automatically The vim tests are somewhat sensitive to timing, so if the machine isn't the fastest or does other things concurrently it can happen that the timing in the tests fail to match reality. . Ideally the tests would not be sensitive to timing issues, but that is a bigger and more involved problem to solve for upstream. So as a tiny downstream we just cop out here and allow the tests to be retried a bunch of times likely hitting the 'PASS' jackpot in a retry. |
03 do not override unset ycmd settings.patch | (download) |
README.md |
80 53 + 27 - 0 ! |
load ycmd default settings from its default_settings.json Upstream prefers to keep the configuration in one place, but as Debian has |
04 do not require semantic highlighting.patch | (download) |
autoload/youcompleteme.vim |
22 18 + 4 - 0 ! |
do not require a ycmd upgrade No need to entangle us too strongly for experimental features |
08 ignore arch specific details in hover test.patch | (download) |
test/hover.test.vim |
33 19 + 14 - 0 ! |
ignore architecture-specific details in hover vim-test |
09 allow tests to be skipped.patch | (download) |
test/run_vim_tests |
7 7 + 0 - 0 ! |
implement a simple interface to skip vim tests In this way I can skip certain tests in autopkgtest to run them later on individually if desired. . The patch is incomplete as it does handle only skipping entire tests while upstream allows running individual testcases inside a test file, so an upstreamable --skip should ideally support this as well beside that the patch as-is depends on the retry one at the moment althrough trivially. |
10 add libclang test.patch | (download) |
test/libclang.test.vim |
28 28 + 0 - 0 ! |
check that libclang-based completer offers fixit clangd is preferred and more featureful, but libclang is a decent fallback and as long as we built it, it should at least keep working. |
11 add ccls test.patch | (download) |
test/ccls.test.vim |
23 23 + 0 - 0 ! |
check ccls support Support is Debian specific as upstream already has libclang and clangd for the cfamily and adding more is hard to do platform agnostic, while in Debian it is hardly one apt call way and hence easy to do. |
12 add gopls test.patch | (download) |
test/gopls.test.vim |
27 27 + 0 - 0 ! |
check gopls works The test content itself is a bit pointless, but it can at least proof that go support isn't entirely broken. |
13 add fortran test.patch | (download) |
test/fortran.test.vim |
25 25 + 0 - 0 ! |
adding a simple test for fortran completer This is Debian-specific as enabling the completer is a Debian-specific patch in ycmd. |