aboutsummaryrefslogtreecommitdiff
path: root/contrib/YouCompleteMe
Commit message (Collapse)AuthorAge
* fix: cleanup contrib/ #20304Justin M. Keyes2022-09-23
| | | | | | - YouCompleteMe is unnecessary since Nvim LSP works well. - vim-addon-local-vimrc is not needed since we added `.editorconfig`. - Inline flake8 arguments. Eventually we will remove all python code, don't need a top-level `.flake8` file meanwhile.
* contrib/ycm_extra_conf.py (#6257)Thiago de Arruda2017-03-11
| | | | | | | | - Remove some unnecessary code: IsHeaderFile is no longer required, as the logic to find flags to headers is now built into YCM - Add function to make paths in flags absolute: It seems YCM is not correctly resolving paths in flags to consider `build` as the compiler working directory. - Update documentation.
* Improve YCM contrib: Fix db pathHeewa Barfchin2016-01-17
|
* Remove all invalid nvimrc and ngvimrc referencesMarco Hinz2015-11-11
| | | | | | | | | | "vimrc" refers to all files that are used to configure Neovim. The main configuration file is init.vim nowadays. All nvimrc references that are left refer to a local ".nvimrc" which is read if 'exrc' is set. ".ngvimrc" references were completely wiped. Closes #3552.
* contrib: Clarify the intention of the YCM configurationChris Snow2015-11-05
| | | | This setup is only meant for developers, not all users of YCM.
* viminfo: First version of ShaDa file dumpingZyX2015-10-08
| | | | | | | | | | | | | | | | | | | | What works: 1. ShaDa file dumping: header, registers, jump list, history, search patterns, substitute strings, variables. 2. ShaDa file reading: registers, global marks, variables. Most was not tested. TODO: 1. Merging. 2. Reading history, local marks, jump and buffer lists. 3. Documentation update. 4. Converting some data from &encoding. 5. Safer variant of dumping viminfo (dump to temporary file then rename). 6. Removing old viminfo code (currently masked with `#if 0` in a ShaDa file for reference).
* contrib: fix YCM completion for header files #2151bobtwinkles2015-03-16
| | | | [ci skip]
* A few fixes for YCM contrib docs and codeJeff Widman2014-10-21
|
* Improve YCM contrib: Improve documentation.Eliseo Martínez2014-10-20
|
* Improve YCM contrib: Fix 'no newline at end of file' issue.Eliseo Martínez2014-10-20
| | | | | | | | | | | | | | | Problem: YCM was reporting a much disturbing warning about a missing newline at the end of some files. This was odd, as the newlines were there and the warning only was shown for some files, not for all of them. Cause: After discussing this issue with @Valloric (see https://github.com/Valloric/YouCompleteMe/issues/950), it turned out that not YCM, but libclang is responsible for it. This is, same compilation flags that produce no warnings with clang-the-binary on the command line, do produce them with libclang-the-library when used by YCM. Solution: Add an extra flag (-Wno_newline_eof) to those extracted from configuration database before passing them to YCM.
* Introduce vim namespace: Contrib YCM: Fix style issues.Eliseo Martínez2014-05-19
| | | | | | Python-mode signaled a couple of issues here: - Multiple imports on same line. - Line too long.
* Introduce vim namespace: Contrib YCM: Fix build dir calculation.Eliseo Martínez2014-05-19
| | | | Build directory calculation had not been correctly updated in #716.
* Introduce nvim namespace: Fix contrib youcompleteme.Eliseo Martínez2014-05-15
| | | | - Fix instructions to install youcompleteme configuration.
* add .vimrc and src/.ycm_extra_conf.pyJulian Orth2014-03-14