Auto merge of #1849 - puremourning:tern-completer, r=vheon
[READY] Add JavaScript completion using Tern completer ## JavaScript completer Adds support for native JavaScript completion using ycmd's Tern completer. WIP because relies on #1848 to be merged first. This PR: - Adds functional documentation to the README.md - Adds configuration documentation to the README.md - Updates the vim doc inline with the above - And, most importantly, updates `ycmd` submodule to include the Tern completer and the additional fixes. ## ycmd changes There are quite a lot of commits going in to ycmd. Here's a summary of the PRs: ``` 8ec8386 Auto merge of #283 - micbou:appveyor-python-issue, r=puremourning d079a92 Auto merge of #280 - puremourning:tern-global-config, r=Valloric dee9afe Auto merge of #281 - puremourning:tern-timeout-exit, r=Valloric 24f5d51 Auto merge of #279 - micbou:coverage, r=Valloric 115a51d Auto merge of #275 - d0k:reparse, r=Valloric 68edd9d Auto merge of #270 - micbou:refactor-tests, r=Valloric 1caabf5 Auto merge of #272 - puremourning:tern-completer-locking, r=Valloric 5c3823d Auto merge of #274 - micbou:coverage-exclude, r=vheon 22bacb3 Auto merge of #271 - puremourning:tests-coverage-doc, r=Valloric ``` Full list can be obtained via the following command in `third-party/ycmd`: `git log --oneline 22c8670c93b4ae9930c9cdf31ad9995c7fd057bd..8ec83866948b24591f62525f027b7aa4aac3e1ad` <!-- Reviewable:start --> [<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/valloric/youcompleteme/1849) <!-- Reviewable:end -->
This commit is contained in:
commit
414f482b1c
268
README.md
268
README.md
@ -19,6 +19,7 @@ YouCompleteMe: a code-completion engine for Vim
|
|||||||
- [Completion string ranking](#completion-string-ranking)
|
- [Completion string ranking](#completion-string-ranking)
|
||||||
- [General semantic completion](#general-semantic-completion-engine-usage)
|
- [General semantic completion](#general-semantic-completion-engine-usage)
|
||||||
- [C-family semantic completion](#c-family-semantic-completion-engine-usage)
|
- [C-family semantic completion](#c-family-semantic-completion-engine-usage)
|
||||||
|
- [JavaScript semantic completion](#javascript-semantic-completion)
|
||||||
- [Semantic completion for other languages](#semantic-completion-for-other-languages)
|
- [Semantic completion for other languages](#semantic-completion-for-other-languages)
|
||||||
- [Writing new semantic completers](#writing-new-semantic-completers)
|
- [Writing new semantic completers](#writing-new-semantic-completers)
|
||||||
- [Diagnostic display](#diagnostic-display)
|
- [Diagnostic display](#diagnostic-display)
|
||||||
@ -45,6 +46,7 @@ YouCompleteMe is a fast, as-you-type, fuzzy-search code completion engine for
|
|||||||
- an [OmniSharp][]-based completion engine for C#,
|
- an [OmniSharp][]-based completion engine for C#,
|
||||||
- a [Gocode][]-based completion engine for Go,
|
- a [Gocode][]-based completion engine for Go,
|
||||||
- a [TSServer][]-based completion engine for TypeScript,
|
- a [TSServer][]-based completion engine for TypeScript,
|
||||||
|
- a [Tern][]-based completion engine for JavaScript.
|
||||||
- and an omnifunc-based completer that uses data from Vim's omnicomplete system
|
- and an omnifunc-based completer that uses data from Vim's omnicomplete system
|
||||||
to provide semantic completions for many other languages (Ruby, PHP etc.).
|
to provide semantic completions for many other languages (Ruby, PHP etc.).
|
||||||
|
|
||||||
@ -131,8 +133,9 @@ rarely), YCM will notify you to recompile it. You should then rerun the install
|
|||||||
process.
|
process.
|
||||||
|
|
||||||
**NOTE:** If you want C-family completion, you MUST have the latest Xcode
|
**NOTE:** If you want C-family completion, you MUST have the latest Xcode
|
||||||
installed along with the latest Command Line Tools (they are installed when you
|
installed along with the latest Command Line Tools (they are installed
|
||||||
start Xcode for the first time).
|
automatically when you run `clang` for the first time, or manually by running
|
||||||
|
`xcode-select --install`)
|
||||||
|
|
||||||
Install CMake. Preferably with [Homebrew][brew], but here's the [stand-alone
|
Install CMake. Preferably with [Homebrew][brew], but here's the [stand-alone
|
||||||
CMake installer][cmake-download].
|
CMake installer][cmake-download].
|
||||||
@ -150,11 +153,20 @@ Compiling YCM **without** semantic support for C-family languages:
|
|||||||
cd ~/.vim/bundle/YouCompleteMe
|
cd ~/.vim/bundle/YouCompleteMe
|
||||||
./install.py
|
./install.py
|
||||||
|
|
||||||
If you want semantic C# support, you should add `--omnisharp-completer` to the
|
The following additional language support options are available:
|
||||||
install script as well. If you want Go support, you should add
|
|
||||||
`--gocode-completer`. If you want semantic TypeScript support, install the
|
- C# support: add `--omnisharp-completer` to `./install.py`
|
||||||
TypeScript SDK with `npm install -g typescript` (you'll need to install
|
- Go support: ensure go is installed and add `--gocode-completer`
|
||||||
[nodejs and npm][npm-install]).
|
- TypeScript support: install [nodejs and npm][npm-install] then install the
|
||||||
|
TypeScript SDK with `npm install -g typescript`.
|
||||||
|
- JavaScript support: install [nodejs and npm][npm-install] and add
|
||||||
|
`--tern-completer` to `./install.py`
|
||||||
|
|
||||||
|
For example, to install with all language features, ensure npm, go, mono and
|
||||||
|
typescript API are installed and in your PATH, then:
|
||||||
|
|
||||||
|
cd ~/.vim/bundle/YouCompleteMe
|
||||||
|
./install.py --clang-completer --omnisharp-completer --gocode-completer --tern-completer
|
||||||
|
|
||||||
That's it. You're done. Refer to the _User Guide_ section on how to use YCM.
|
That's it. You're done. Refer to the _User Guide_ section on how to use YCM.
|
||||||
Don't forget that if you want the C-family semantic completion engine to work,
|
Don't forget that if you want the C-family semantic completion engine to work,
|
||||||
@ -196,11 +208,20 @@ Compiling YCM **without** semantic support for C-family languages:
|
|||||||
cd ~/.vim/bundle/YouCompleteMe
|
cd ~/.vim/bundle/YouCompleteMe
|
||||||
./install.py
|
./install.py
|
||||||
|
|
||||||
If you want semantic C# support, you should add `--omnisharp-completer` to the
|
The following additional language support options are available:
|
||||||
install script as well. If you want Go support, you should add
|
|
||||||
`--gocode-completer`. If you want semantic TypeScript support, install the
|
- C# support: add `--omnisharp-completer` to `./install.py`
|
||||||
TypeScript SDK with `npm install -g typescript` (you'll need to install
|
- Go support: ensure go is installed and add `--gocode-completer`
|
||||||
[nodejs and npm][npm-install]).
|
- TypeScript support: install [nodejs and npm][npm-install] then install the
|
||||||
|
TypeScript SDK with `npm install -g typescript`.
|
||||||
|
- JavaScript support: install [nodejs and npm][npm-install] and add
|
||||||
|
`--tern-completer` to `./install.py`
|
||||||
|
|
||||||
|
For example, to install with all language features, ensure node, go, mono and
|
||||||
|
typescript API are installed and in your PATH, then:
|
||||||
|
|
||||||
|
cd ~/.vim/bundle/YouCompleteMe
|
||||||
|
./install.py --clang-completer --omnisharp-completer --gocode-completer --tern-completer
|
||||||
|
|
||||||
That's it. You're done. Refer to the _User Guide_ section on how to use YCM.
|
That's it. You're done. Refer to the _User Guide_ section on how to use YCM.
|
||||||
Don't forget that if you want the C-family semantic completion engine to work,
|
Don't forget that if you want the C-family semantic completion engine to work,
|
||||||
@ -242,11 +263,20 @@ Compiling YCM **without** semantic support for C-family languages:
|
|||||||
cd ~/.vim/bundle/YouCompleteMe
|
cd ~/.vim/bundle/YouCompleteMe
|
||||||
./install.py
|
./install.py
|
||||||
|
|
||||||
If you want semantic C# support, you should add `--omnisharp-completer` to the
|
The following additional language support options are available:
|
||||||
install script as well. If you want Go support, you should add
|
|
||||||
`--gocode-completer`. If you want semantic TypeScript support, install the
|
- C# support: add `--omnisharp-completer` to `./install.py`
|
||||||
TypeScript SDK with `npm install -g typescript` (you'll need to install
|
- Go support: ensure go is installed and add `--gocode-completer`
|
||||||
[nodejs and npm][npm-install]).
|
- TypeScript support: install [nodejs and npm][npm-install] then install the
|
||||||
|
TypeScript SDK with `npm install -g typescript`.
|
||||||
|
- JavaScript support: install [nodejs and npm][npm-install] and add
|
||||||
|
`--tern-completer` to `./install.py`
|
||||||
|
|
||||||
|
For example, to install with all language features, ensure node, go, mono and
|
||||||
|
typescript API are installed and in your PATH, then:
|
||||||
|
|
||||||
|
cd ~/.vim/bundle/YouCompleteMe
|
||||||
|
./install.py --clang-completer --omnisharp-completer --gocode-completer --tern-completer
|
||||||
|
|
||||||
That's it. You're done. Refer to the _User Guide_ section on how to use YCM.
|
That's it. You're done. Refer to the _User Guide_ section on how to use YCM.
|
||||||
Don't forget that if you want the C-family semantic completion engine to work,
|
Don't forget that if you want the C-family semantic completion engine to work,
|
||||||
@ -301,11 +331,20 @@ Compiling YCM **without** semantic support for C-family languages:
|
|||||||
cd %USERPROFILE%/vimfiles/bundle/YouCompleteMe
|
cd %USERPROFILE%/vimfiles/bundle/YouCompleteMe
|
||||||
install.py
|
install.py
|
||||||
|
|
||||||
If you want semantic C# support, you should add `--omnisharp-completer` to the
|
The following additional language support options are available:
|
||||||
install script as well. If you want Go support, you should add
|
|
||||||
`--gocode-completer`. If you want semantic TypeScript support, install the
|
- C# support: add `--omnisharp-completer` to `./install.py`
|
||||||
TypeScript SDK with `npm install -g typescript` (you'll need to install
|
- Go support: ensure go is installed and add `--gocode-completer`
|
||||||
[nodejs and npm][npm-install]).
|
- TypeScript support: install [nodejs and npm][npm-install] then install the
|
||||||
|
TypeScript SDK with `npm install -g typescript`.
|
||||||
|
- JavaScript support: install [nodejs and npm][npm-install] and add
|
||||||
|
`--tern-completer` to `./install.py`
|
||||||
|
|
||||||
|
For example, to install with all language features, ensure npm, go, mono and
|
||||||
|
typescript API are installed and in your `%PATH%`, then:
|
||||||
|
|
||||||
|
cd %USERPROFILE%/vimfiles/bundle/YouCompleteMe
|
||||||
|
python install.py --clang-completer --omnisharp-completer --gocode-completer --tern-completer
|
||||||
|
|
||||||
You can specify the Microsoft Visual C++ (MSVC) version using the `--msvc`
|
You can specify the Microsoft Visual C++ (MSVC) version using the `--msvc`
|
||||||
option. YCM officially supports MSVC 11 (Visual Studio 2012), 12 (2013), and 14
|
option. YCM officially supports MSVC 11 (Visual Studio 2012), 12 (2013), and 14
|
||||||
@ -355,8 +394,20 @@ Compiling YCM **without** semantic support for C-family languages:
|
|||||||
cd ~/.vim/bundle/YouCompleteMe
|
cd ~/.vim/bundle/YouCompleteMe
|
||||||
./install.py --system-boost
|
./install.py --system-boost
|
||||||
|
|
||||||
If you want semantic C# support, you should add `--omnisharp-completer` to the
|
The following additional language support options are available:
|
||||||
install script as well. If you want Go support, you should add `--gocode-completer`.
|
|
||||||
|
- C# support: add `--omnisharp-completer` to `./install.py`
|
||||||
|
- Go support: ensure go is installed and add `--gocode-completer`
|
||||||
|
- TypeScript support: install [nodejs and npm][npm-install] then install the
|
||||||
|
TypeScript SDK with `npm install -g typescript`.
|
||||||
|
- JavaScript support: install [nodejs and npm][npm-install] and add
|
||||||
|
`--tern-completer` to `./install.py`
|
||||||
|
|
||||||
|
For example, to install with all language features, ensure npm, go, mono and
|
||||||
|
typescript API are installed and in your PATH, then:
|
||||||
|
|
||||||
|
cd ~/.vim/bundle/YouCompleteMe
|
||||||
|
./install.py --clang-completer --omnisharp-completer --gocode-completer --tern-completer
|
||||||
|
|
||||||
That's it. You're done. Refer to the _User Guide_ section on how to use YCM.
|
That's it. You're done. Refer to the _User Guide_ section on how to use YCM.
|
||||||
Don't forget that if you want the C-family semantic completion engine to work,
|
Don't forget that if you want the C-family semantic completion engine to work,
|
||||||
@ -528,6 +579,24 @@ process.
|
|||||||
the `YouCompleteMe/third_party/ycmd` folder for you if you compiled with
|
the `YouCompleteMe/third_party/ycmd` folder for you if you compiled with
|
||||||
clang support (it needs to be there for YCM to work).
|
clang support (it needs to be there for YCM to work).
|
||||||
|
|
||||||
|
5. Set up support for additional languages, as desired:
|
||||||
|
|
||||||
|
- C# support: Navigate to
|
||||||
|
`YouCompleteMe/third-party/ycmd/third-party/OmniSharpServer` and run
|
||||||
|
`msbuild` (Windows) or `xbuild` (other platforms, using mono) depending on
|
||||||
|
your platform. If mono is not installed, install it.
|
||||||
|
|
||||||
|
- Go support: If go is not installed on your system, install it and add it to
|
||||||
|
your path. Navigate to `YouCompleteMe/third-party/ycmd/third-party/gocode`
|
||||||
|
and run `go build`.
|
||||||
|
|
||||||
|
- TypeScript support: As with the quick installation, simply `npm install -g
|
||||||
|
typescript` after successfully installing [nodejs and npm][npm-install].
|
||||||
|
|
||||||
|
- JavaScript support: Install [nodejs and npm][npm-install]. Then navigate to
|
||||||
|
`YouCompleteMe/third-party/ycmd/third-party/tern` and run `npm install
|
||||||
|
--production`
|
||||||
|
|
||||||
That's it. You're done. Refer to the _User Guide_ section on how to use YCM.
|
That's it. You're done. Refer to the _User Guide_ section on how to use YCM.
|
||||||
Don't forget that if you want the C-family semantic completion engine to work,
|
Don't forget that if you want the C-family semantic completion engine to work,
|
||||||
you will need to provide the compilation flags for your project to YCM. It's all
|
you will need to provide the compilation flags for your project to YCM. It's all
|
||||||
@ -585,6 +654,15 @@ Quick Feature Summary
|
|||||||
* Semantic type information for identifiers (`GetType`)
|
* Semantic type information for identifiers (`GetType`)
|
||||||
* View documentation comments for identifiers (`GetDoc`)
|
* View documentation comments for identifiers (`GetDoc`)
|
||||||
|
|
||||||
|
### JavaScript
|
||||||
|
|
||||||
|
* Intelligent auto-completion
|
||||||
|
* Go to definition, find references (`GoToDefinition`, `GoToReferences`)
|
||||||
|
* Type information for identifiers (`GetType`)
|
||||||
|
* View documentation comments for identifiers (`GetDoc`)
|
||||||
|
* Management of `Tern` server instance
|
||||||
|
|
||||||
|
|
||||||
User Guide
|
User Guide
|
||||||
----------
|
----------
|
||||||
|
|
||||||
@ -690,12 +768,106 @@ getting fast completions.
|
|||||||
Call the `:YcmDiags` command to see if any errors or warnings were detected in
|
Call the `:YcmDiags` command to see if any errors or warnings were detected in
|
||||||
your file.
|
your file.
|
||||||
|
|
||||||
|
### JavaScript semantic completion
|
||||||
|
|
||||||
|
#### Quick start
|
||||||
|
|
||||||
|
1. Ensure that you have enabled the Tern completer. See the
|
||||||
|
[installation guide](#installation) for details.
|
||||||
|
|
||||||
|
2. Create a `.tern-project` file in the root directory of your JavaScript
|
||||||
|
project, by following the [instructions][tern-project] in the [Tern][]
|
||||||
|
documentation.
|
||||||
|
|
||||||
|
3. Make sure that Vim's working directory is a descendent of that directory (or
|
||||||
|
that directory itself) when working with JavaScript files.
|
||||||
|
|
||||||
|
#### Explanation
|
||||||
|
|
||||||
|
JavaScript completion is based on [Tern][]. This completion engine requires a
|
||||||
|
file named [`.tern-project`][tern-project] to exist in the current working
|
||||||
|
directory or a directory which is an ancestor of the current working directory
|
||||||
|
when the tern server is started. YCM starts the Tern server the first time a
|
||||||
|
JavaScript file is edited, so Vim's working directory at that time needs to be a
|
||||||
|
descendent of the directory containing the `.tern-project` file (or that
|
||||||
|
directory itself).
|
||||||
|
|
||||||
|
Alternatively, as described in the [Tern documentation][tern-docs], a global
|
||||||
|
`.tern-config` file may be used.
|
||||||
|
|
||||||
|
Multiple Tern servers, are not supported. To switch to a different
|
||||||
|
JavaScript project, you can do one of the following:
|
||||||
|
|
||||||
|
- start a new instance of Vim from the new project's directory
|
||||||
|
- change Vim's working directory (`:cd /path/to/new/project`) and restart the
|
||||||
|
`ycmd` server (`:YcmRestartServer`)
|
||||||
|
- change Vim's working directory (`:cd /path/to/new/project`), open a JavaScript
|
||||||
|
file (or set filetype to JavaScript) and restart the Tern server using YCM
|
||||||
|
completer subcommands `:YcmCompleter StopServer` and `:YcmCompleter
|
||||||
|
StartServer`.
|
||||||
|
|
||||||
|
#### Tips and tricks
|
||||||
|
|
||||||
|
This section contains some advice for configuring `.tern-project` and working
|
||||||
|
with JavaScript files. The canonical reference for correctly configuring Tern is
|
||||||
|
the [Tern documentation][tern-docs]. Any issues, improvements, advice, etc.
|
||||||
|
should be sought from the [Tern][] project. For example, see the [list of tern
|
||||||
|
plugins](http://ternjs.net/doc/manual.html#plugins) for the list of plugins
|
||||||
|
which can be enabled in the `plugins` section of the `.tern-project` file.
|
||||||
|
|
||||||
|
##### Configuring Tern for node support
|
||||||
|
|
||||||
|
The following simple example `.tern-project` file enables nodejs support:
|
||||||
|
|
||||||
|
```json
|
||||||
|
{
|
||||||
|
"plugins": {
|
||||||
|
"node": {}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
```
|
||||||
|
|
||||||
|
##### Configuring Tern for requirejs support
|
||||||
|
|
||||||
|
The Tern requirejs plugin requires that all included "libraries" are rooted
|
||||||
|
under the same base directory. If that's not the case for your projects, then it
|
||||||
|
is possible to make it work with appropriate symbolic links. For example, create
|
||||||
|
a directory `ext_lib` within your project and populate it with symlinks to your
|
||||||
|
libraries. Then set up the `.tern-project` something like this:
|
||||||
|
|
||||||
|
```json
|
||||||
|
|
||||||
|
{
|
||||||
|
"plugins": {
|
||||||
|
"requirejs": {
|
||||||
|
"baseURL": "./ext_lib",
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
Then, given the following structure:
|
||||||
|
|
||||||
|
```
|
||||||
|
./ext_lib/mylib (symlink)
|
||||||
|
./ext_lib/anotherlib (symlink)
|
||||||
|
```
|
||||||
|
|
||||||
|
Can be used as follows:
|
||||||
|
|
||||||
|
```javascript
|
||||||
|
define( [ 'mylib/file1', 'anotherlib/anotherfile' ], function( f1, f2 ) {
|
||||||
|
// etc.
|
||||||
|
} );
|
||||||
|
```
|
||||||
|
|
||||||
### Semantic completion for other languages
|
### Semantic completion for other languages
|
||||||
|
|
||||||
Python, C#, Go, and TypeScript are supported natively by YouCompleteMe using the [Jedi][],
|
Python, C#, Go, and TypeScript are supported natively by YouCompleteMe using the
|
||||||
[Omnisharp][], [Gocode][], and [TSServer][] engines, respectively. Check the
|
[Jedi][], [Omnisharp][], [Gocode][], and [TSServer][] engines, respectively.
|
||||||
[installation](#installation) section for instructions to enable these features
|
Check the [installation](#installation) section for instructions to enable these
|
||||||
if desired.
|
features if desired.
|
||||||
|
|
||||||
YCM will use your `omnifunc` (see `:h omnifunc` in Vim) as a source for semantic
|
YCM will use your `omnifunc` (see `:h omnifunc` in Vim) as a source for semantic
|
||||||
completions if it does not have a native semantic completion engine for your
|
completions if it does not have a native semantic completion engine for your
|
||||||
@ -931,7 +1103,8 @@ the definition of the symbol is in the current translation unit. A translation
|
|||||||
unit consists of the file you are editing and all the files you are including
|
unit consists of the file you are editing and all the files you are including
|
||||||
with `#include` directives (directly or indirectly) in that file.
|
with `#include` directives (directly or indirectly) in that file.
|
||||||
|
|
||||||
Supported in filetypes: `c, cpp, objc, objcpp, python, cs, typescript`
|
Supported in filetypes: `c, cpp, objc, objcpp, python, cs, typescript,
|
||||||
|
javascript`
|
||||||
|
|
||||||
### The `GoTo` subcommand
|
### The `GoTo` subcommand
|
||||||
|
|
||||||
@ -942,7 +1115,7 @@ the current translation unit, jumps to the symbol's declaration. For
|
|||||||
C/C++/Objective-C, it first tries to look up the current line for a header and
|
C/C++/Objective-C, it first tries to look up the current line for a header and
|
||||||
jump to it. For C#, implementations are also considered and preferred.
|
jump to it. For C#, implementations are also considered and preferred.
|
||||||
|
|
||||||
Supported in filetypes: `c, cpp, objc, objcpp, python, cs`
|
Supported in filetypes: `c, cpp, objc, objcpp, python, cs, javascript`
|
||||||
|
|
||||||
### The `GoToImprecise` subcommand
|
### The `GoToImprecise` subcommand
|
||||||
|
|
||||||
@ -957,6 +1130,14 @@ latency.
|
|||||||
|
|
||||||
Supported in filetypes: `c, cpp, objc, objcpp`
|
Supported in filetypes: `c, cpp, objc, objcpp`
|
||||||
|
|
||||||
|
### The `GoToReferences` subcommand
|
||||||
|
|
||||||
|
This command attempts to find all of the references within the project to the
|
||||||
|
identifier under the cursor and populates the quickfix list with those
|
||||||
|
locations.
|
||||||
|
|
||||||
|
Supported in filetypes: `javascript`
|
||||||
|
|
||||||
### The `ClearCompilationFlagCache` subcommand
|
### The `ClearCompilationFlagCache` subcommand
|
||||||
|
|
||||||
YCM caches the flags it gets from the `FlagsForFile` function in your
|
YCM caches the flags it gets from the `FlagsForFile` function in your
|
||||||
@ -996,9 +1177,9 @@ auto x = &s; // invoking on x or auto returns "auto";
|
|||||||
std::cout << *x; // invoking on x returns "const char ** => const char **"
|
std::cout << *x; // invoking on x returns "const char ** => const char **"
|
||||||
```
|
```
|
||||||
|
|
||||||
NOTE: Causes reparsing of the current translation unit.
|
NOTE: Causes re-parsing of the current translation unit.
|
||||||
|
|
||||||
Supported in filetypes: `c, cpp, objc, objcpp, typescript`
|
Supported in filetypes: `c, cpp, objc, objcpp, typescript, javascript`
|
||||||
|
|
||||||
### The `GetParent` subcommand
|
### The `GetParent` subcommand
|
||||||
|
|
||||||
@ -1027,7 +1208,7 @@ context of the second `C::f` is the translation unit.
|
|||||||
|
|
||||||
For global declarations, the semantic parent is the translation unit.
|
For global declarations, the semantic parent is the translation unit.
|
||||||
|
|
||||||
NOTE: Causes reparsing of the current translation unit.
|
NOTE: Causes re-parsing of the current translation unit.
|
||||||
|
|
||||||
Supported in filetypes: `c, cpp, objc, objcpp`
|
Supported in filetypes: `c, cpp, objc, objcpp`
|
||||||
|
|
||||||
@ -1075,21 +1256,22 @@ under the cursor. This includes, depending on the language, things like:
|
|||||||
* Python docstrings
|
* Python docstrings
|
||||||
* etc.
|
* etc.
|
||||||
|
|
||||||
Supported in filetypes: `c, cpp, objc, objcpp, cs, python, typescript`
|
Supported in filetypes: `c, cpp, objc, objcpp, cs, python, typescript,
|
||||||
|
javascript`
|
||||||
|
|
||||||
### The `StartServer` subcommand
|
### The `StartServer` subcommand
|
||||||
|
|
||||||
Starts the semantic-engine-as-localhost-server for those semantic engines that
|
Starts the semantic-engine-as-localhost-server for those semantic engines that
|
||||||
work as separate servers that YCM talks to.
|
work as separate servers that YCM talks to.
|
||||||
|
|
||||||
Supported in filetypes: `cs`
|
Supported in filetypes: `cs, javascript, go`
|
||||||
|
|
||||||
### The `StopServer` subcommand
|
### The `StopServer` subcommand
|
||||||
|
|
||||||
Stops the semantic-engine-as-localhost-server for those semantic engines that
|
Stops the semantic-engine-as-localhost-server for those semantic engines that
|
||||||
work as separate servers that YCM talks to.
|
work as separate servers that YCM talks to.
|
||||||
|
|
||||||
Supported in filetypes: `cs`
|
Supported in filetypes: `cs, javascript, go`
|
||||||
|
|
||||||
### The `RestartServer` subcommand
|
### The `RestartServer` subcommand
|
||||||
|
|
||||||
@ -2345,6 +2527,17 @@ To increase the Neobundle timeout to 1500 seconds, add the following to your vim
|
|||||||
let g:neobundle#install_process_timeout = 1500
|
let g:neobundle#install_process_timeout = 1500
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### When I open a JavaScript file, I get an annoying warning about `.tern-project` file
|
||||||
|
|
||||||
|
Take a look at the [instructions for using the JavaScript
|
||||||
|
completer](#javascript-semantic-completion).
|
||||||
|
|
||||||
|
If this is still really annoying, and you have a good reason not to have a
|
||||||
|
`.tern-project` file, create an empty `.tern-config` file in your home directory
|
||||||
|
and YCM will stop complaining.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Contact
|
Contact
|
||||||
-------
|
-------
|
||||||
|
|
||||||
@ -2412,3 +2605,6 @@ This software is licensed under the [GPL v3 license][gpl].
|
|||||||
[visual-studio-download]: https://www.visualstudio.com/products/free-developer-offers-vs.aspx
|
[visual-studio-download]: https://www.visualstudio.com/products/free-developer-offers-vs.aspx
|
||||||
[7z-download]: http://www.7-zip.org/download.html
|
[7z-download]: http://www.7-zip.org/download.html
|
||||||
[npm-install]: https://docs.npmjs.com/getting-started/installing-node
|
[npm-install]: https://docs.npmjs.com/getting-started/installing-node
|
||||||
|
[Tern]: http://ternjs.net
|
||||||
|
[tern-project]: http://ternjs.net/doc/manual.html#configuration
|
||||||
|
[tern-docs]: http://ternjs.net/doc/manual.html#server
|
||||||
|
@ -19,15 +19,22 @@ Contents ~
|
|||||||
4. Python 2 |youcompleteme-python-2|
|
4. Python 2 |youcompleteme-python-2|
|
||||||
5. Go |youcompleteme-go|
|
5. Go |youcompleteme-go|
|
||||||
6. TypeScript |youcompleteme-typescript|
|
6. TypeScript |youcompleteme-typescript|
|
||||||
|
7. JavaScript |youcompleteme-javascript|
|
||||||
5. User Guide |youcompleteme-user-guide|
|
5. User Guide |youcompleteme-user-guide|
|
||||||
1. General Usage |youcompleteme-general-usage|
|
1. General Usage |youcompleteme-general-usage|
|
||||||
2. Client-server architecture |youcompleteme-client-server-architecture|
|
2. Client-server architecture |youcompleteme-client-server-architecture|
|
||||||
3. Completion string ranking |youcompleteme-completion-string-ranking|
|
3. Completion string ranking |youcompleteme-completion-string-ranking|
|
||||||
4. General Semantic Completion Engine Usage |youcompleteme-general-semantic-completion-engine-usage|
|
4. General Semantic Completion Engine Usage |youcompleteme-general-semantic-completion-engine-usage|
|
||||||
5. C-family Semantic Completion Engine Usage |youcompleteme-c-family-semantic-completion-engine-usage|
|
5. C-family Semantic Completion Engine Usage |youcompleteme-c-family-semantic-completion-engine-usage|
|
||||||
6. Semantic completion for other languages |youcompleteme-semantic-completion-for-other-languages|
|
6. JavaScript semantic completion |youcompleteme-javascript-semantic-completion|
|
||||||
7. Writing New Semantic Completers |youcompleteme-writing-new-semantic-completers|
|
1. Quick start |youcompleteme-quick-start|
|
||||||
8. Diagnostic display |youcompleteme-diagnostic-display|
|
2. Explanation |youcompleteme-explanation|
|
||||||
|
3. Tips and tricks |youcompleteme-tips-tricks|
|
||||||
|
1. Configuring Tern for node support |youcompleteme-configuring-tern-for-node-support|
|
||||||
|
2. Configuring Tern for requirejs support |youcompleteme-configuring-tern-for-requirejs-support|
|
||||||
|
7. Semantic completion for other languages |youcompleteme-semantic-completion-for-other-languages|
|
||||||
|
8. Writing New Semantic Completers |youcompleteme-writing-new-semantic-completers|
|
||||||
|
9. Diagnostic display |youcompleteme-diagnostic-display|
|
||||||
1. C# Diagnostic Support |youcompleteme-c-diagnostic-support|
|
1. C# Diagnostic Support |youcompleteme-c-diagnostic-support|
|
||||||
2. Diagnostic highlighting groups |youcompleteme-diagnostic-highlighting-groups|
|
2. Diagnostic highlighting groups |youcompleteme-diagnostic-highlighting-groups|
|
||||||
6. Commands |youcompleteme-commands|
|
6. Commands |youcompleteme-commands|
|
||||||
@ -44,17 +51,18 @@ Contents ~
|
|||||||
3. The |GoToDefinition| subcommand
|
3. The |GoToDefinition| subcommand
|
||||||
4. The |GoTo| subcommand
|
4. The |GoTo| subcommand
|
||||||
5. The |GoToImprecise| subcommand
|
5. The |GoToImprecise| subcommand
|
||||||
6. The |ClearCompilationFlagCache| subcommand
|
6. The |GoToReferences| subcommand
|
||||||
7. The |GetType| subcommand
|
7. The |ClearCompilationFlagCache| subcommand
|
||||||
8. The |GetParent| subcommand
|
8. The |GetType| subcommand
|
||||||
9. The |FixIt| subcommand
|
9. The |GetParent| subcommand
|
||||||
10. The |GetDoc| subcommand
|
10. The |FixIt| subcommand
|
||||||
11. The |StartServer| subcommand
|
11. The |GetDoc| subcommand
|
||||||
12. The |StopServer| subcommand
|
12. The |StartServer| subcommand
|
||||||
13. The |RestartServer| subcommand
|
13. The |StopServer| subcommand
|
||||||
14. The |ReloadSolution| subcommand
|
14. The |RestartServer| subcommand
|
||||||
15. The |GoToImplementation| subcommand
|
15. The |ReloadSolution| subcommand
|
||||||
16. The |GoToImplementationElseDeclaration| subcommand
|
16. The |GoToImplementation| subcommand
|
||||||
|
17. The |GoToImplementationElseDeclaration| subcommand
|
||||||
8. Functions |youcompleteme-functions|
|
8. Functions |youcompleteme-functions|
|
||||||
1. The |youcompleteme#GetErrorCount| function
|
1. The |youcompleteme#GetErrorCount| function
|
||||||
2. The |youcompleteme#GetWarningCount| function
|
2. The |youcompleteme#GetWarningCount| function
|
||||||
@ -132,10 +140,12 @@ Contents ~
|
|||||||
25. I get weird errors when I press 'Ctrl-C' in Vim |Ctrl-sub-C|
|
25. I get weird errors when I press 'Ctrl-C' in Vim |Ctrl-sub-C|
|
||||||
26. Why did YCM stop using Syntastic for diagnostics display? |youcompleteme-why-did-ycm-stop-using-syntastic-for-diagnostics-display|
|
26. Why did YCM stop using Syntastic for diagnostics display? |youcompleteme-why-did-ycm-stop-using-syntastic-for-diagnostics-display|
|
||||||
27. Completion doesn't work with the C++ standard library headers |youcompleteme-completion-doesnt-work-with-c-standard-library-headers|
|
27. Completion doesn't work with the C++ standard library headers |youcompleteme-completion-doesnt-work-with-c-standard-library-headers|
|
||||||
28. Install YCM with NeoBundle [43] |youcompleteme-install-ycm-with-neobundle-43|
|
28. Install YCM with NeoBundle [48] |youcompleteme-install-ycm-with-neobundle-48|
|
||||||
10. Contact |youcompleteme-contact|
|
29. When I open a JavaScript file, I get an annoying warning about '.tern-project'
|
||||||
11. License |youcompleteme-license|
|
file |.tern-sub-project|
|
||||||
12. References |youcompleteme-references|
|
11. Contact |youcompleteme-contact|
|
||||||
|
12. License |youcompleteme-license|
|
||||||
|
13. References |youcompleteme-references|
|
||||||
|
|
||||||
===============================================================================
|
===============================================================================
|
||||||
*youcompleteme-introduction*
|
*youcompleteme-introduction*
|
||||||
@ -161,6 +171,7 @@ Image: Build Status [1] Image: Build status [3]
|
|||||||
- Completion string ranking
|
- Completion string ranking
|
||||||
- General semantic completion
|
- General semantic completion
|
||||||
- C-family semantic completion
|
- C-family semantic completion
|
||||||
|
- JavaScript semantic completion
|
||||||
- Semantic completion for other languages
|
- Semantic completion for other languages
|
||||||
- Writing new semantic completers
|
- Writing new semantic completers
|
||||||
- Diagnostic display
|
- Diagnostic display
|
||||||
@ -184,24 +195,19 @@ YouCompleteMe is a fast, as-you-type, fuzzy-search code completion engine for
|
|||||||
Vim. It has several completion engines:
|
Vim. It has several completion engines:
|
||||||
|
|
||||||
- an identifier-based engine that works with every programming language,
|
- an identifier-based engine that works with every programming language,
|
||||||
|
|
||||||
- a Clang [5]-based engine that provides native semantic code completion for
|
- a Clang [5]-based engine that provides native semantic code completion for
|
||||||
C/C++/Objective-C/Objective-C++ (from now on referred to as "the C-family
|
C/C++/Objective-C/Objective-C++ (from now on referred to as "the C-family
|
||||||
languages"),
|
languages"),
|
||||||
|
|
||||||
- a Jedi [6]-based completion engine for Python,
|
- a Jedi [6]-based completion engine for Python,
|
||||||
|
|
||||||
- an OmniSharp [7]-based completion engine for C#,
|
- an OmniSharp [7]-based completion engine for C#,
|
||||||
|
|
||||||
- a Gocode [8]-based completion engine for Go,
|
- a Gocode [8]-based completion engine for Go,
|
||||||
|
|
||||||
- a TSServer [9]-based completion engine for TypeScript,
|
- a TSServer [9]-based completion engine for TypeScript,
|
||||||
|
- a Tern [10]-based completion engine for JavaScript.
|
||||||
- and an omnifunc-based completer that uses data from Vim's omnicomplete
|
- and an omnifunc-based completer that uses data from Vim's omnicomplete
|
||||||
system to provide semantic completions for many other languages (Ruby, PHP
|
system to provide semantic completions for many other languages (Ruby, PHP
|
||||||
etc.).
|
etc.).
|
||||||
|
|
||||||
Image: YouCompleteMe GIF demo (see reference [10])
|
Image: YouCompleteMe GIF demo (see reference [11])
|
||||||
|
|
||||||
Here's an explanation of what happens in the short GIF demo above.
|
Here's an explanation of what happens in the short GIF demo above.
|
||||||
|
|
||||||
@ -220,7 +226,7 @@ typing to further filter out unwanted completions.
|
|||||||
|
|
||||||
A critical thing to notice is that the completion **filtering is NOT based on
|
A critical thing to notice is that the completion **filtering is NOT based on
|
||||||
the input being a string prefix of the completion** (but that works too). The
|
the input being a string prefix of the completion** (but that works too). The
|
||||||
input needs to be a _subsequence [11] match_ of a completion. This is a fancy
|
input needs to be a _subsequence [12] match_ of a completion. This is a fancy
|
||||||
way of saying that any input characters need to be present in a completion
|
way of saying that any input characters need to be present in a completion
|
||||||
string in the order in which they appear in the input. So 'abc' is a
|
string in the order in which they appear in the input. So 'abc' is a
|
||||||
subsequence of 'xaybgc', but not of 'xbyxaxxc'. After the filter, a complicated
|
subsequence of 'xaybgc', but not of 'xbyxaxxc'. After the filter, a complicated
|
||||||
@ -239,7 +245,7 @@ with a keyboard shortcut; see the rest of the docs).
|
|||||||
|
|
||||||
The last thing that you can see in the demo is YCM's diagnostic display
|
The last thing that you can see in the demo is YCM's diagnostic display
|
||||||
features (the little red X that shows up in the left gutter; inspired by
|
features (the little red X that shows up in the left gutter; inspired by
|
||||||
Syntastic [12]) if you are editing a C-family file. As Clang compiles your file
|
Syntastic [13]) if you are editing a C-family file. As Clang compiles your file
|
||||||
and detects warnings or errors, they will be presented in various ways. You
|
and detects warnings or errors, they will be presented in various ways. You
|
||||||
don't need to save your file or press any keyboard shortcut to trigger this, it
|
don't need to save your file or press any keyboard shortcut to trigger this, it
|
||||||
"just happens" in the background.
|
"just happens" in the background.
|
||||||
@ -257,7 +263,7 @@ languages & Python. Expect more IDE features powered by the various YCM
|
|||||||
semantic engines in the future.
|
semantic engines in the future.
|
||||||
|
|
||||||
You'll also find that YCM has filepath completers (try typing './' in a file)
|
You'll also find that YCM has filepath completers (try typing './' in a file)
|
||||||
and a completer that integrates with UltiSnips [13].
|
and a completer that integrates with UltiSnips [14].
|
||||||
|
|
||||||
===============================================================================
|
===============================================================================
|
||||||
*youcompleteme-installation*
|
*youcompleteme-installation*
|
||||||
@ -270,16 +276,16 @@ Mac OS X Installation ~
|
|||||||
Please refer to the full Installation Guide below; the following commands are
|
Please refer to the full Installation Guide below; the following commands are
|
||||||
provided on a best-effort basis and may not work for you.
|
provided on a best-effort basis and may not work for you.
|
||||||
|
|
||||||
Install the latest version of MacVim [14]. Yes, MacVim. And yes, the _latest_.
|
Install the latest version of MacVim [15]. Yes, MacVim. And yes, the _latest_.
|
||||||
|
|
||||||
If you don't use the MacVim GUI, it is recommended to use the Vim binary that
|
If you don't use the MacVim GUI, it is recommended to use the Vim binary that
|
||||||
is inside the MacVim.app package ('MacVim.app/Contents/MacOS/Vim'). To ensure
|
is inside the MacVim.app package ('MacVim.app/Contents/MacOS/Vim'). To ensure
|
||||||
it works correctly copy the 'mvim' script from the MacVim [14] download to your
|
it works correctly copy the 'mvim' script from the MacVim [15] download to your
|
||||||
local binary folder (for example '/usr/local/bin/mvim') and then symlink it:
|
local binary folder (for example '/usr/local/bin/mvim') and then symlink it:
|
||||||
>
|
>
|
||||||
ln -s /usr/local/bin/mvim vim
|
ln -s /usr/local/bin/mvim vim
|
||||||
<
|
<
|
||||||
Install YouCompleteMe with Vundle [15].
|
Install YouCompleteMe with Vundle [16].
|
||||||
|
|
||||||
**Remember:** YCM is a plugin with a compiled component. If you **update** YCM
|
**Remember:** YCM is a plugin with a compiled component. If you **update** YCM
|
||||||
using Vundle and the ycm_support_libs library APIs have changed (happens
|
using Vundle and the ycm_support_libs library APIs have changed (happens
|
||||||
@ -287,11 +293,12 @@ rarely), YCM will notify you to recompile it. You should then rerun the install
|
|||||||
process.
|
process.
|
||||||
|
|
||||||
**NOTE:** If you want C-family completion, you MUST have the latest Xcode
|
**NOTE:** If you want C-family completion, you MUST have the latest Xcode
|
||||||
installed along with the latest Command Line Tools (they are installed when you
|
installed along with the latest Command Line Tools (they are installed
|
||||||
start Xcode for the first time).
|
automatically when you run 'clang' for the first time, or manually by running
|
||||||
|
'xcode-select --install')
|
||||||
|
|
||||||
Install CMake. Preferably with Homebrew [16], but here's the stand-alone CMake
|
Install CMake. Preferably with Homebrew [17], but here's the stand-alone CMake
|
||||||
installer [17].
|
installer [18].
|
||||||
|
|
||||||
_If_ you have installed a Homebrew Python and/or Homebrew MacVim, see the _FAQ_
|
_If_ you have installed a Homebrew Python and/or Homebrew MacVim, see the _FAQ_
|
||||||
for details.
|
for details.
|
||||||
@ -306,11 +313,21 @@ Compiling YCM **without** semantic support for C-family languages:
|
|||||||
cd ~/.vim/bundle/YouCompleteMe
|
cd ~/.vim/bundle/YouCompleteMe
|
||||||
./install.py
|
./install.py
|
||||||
<
|
<
|
||||||
If you want semantic C# support, you should add '--omnisharp-completer' to the
|
The following additional language support options are available:
|
||||||
install script as well. If you want Go support, you should add '--gocode-
|
|
||||||
completer'. If you want semantic TypeScript support, install the TypeScript SDK
|
|
||||||
with 'npm install -g typescript' (you'll need to install nodejs and npm [18]).
|
|
||||||
|
|
||||||
|
- C# support: add '--omnisharp-completer' to './install.py'
|
||||||
|
- Go support: ensure go is installed and add '--gocode-completer'
|
||||||
|
- TypeScript support: install nodejs and npm [19] then install the TypeScript
|
||||||
|
SDK with 'npm install -g typescript'.
|
||||||
|
- JavaScript support: install nodejs and npm [19] and add '--tern-completer'
|
||||||
|
to './install.py'
|
||||||
|
|
||||||
|
For example, to install with all language features, ensure npm, go, mono and
|
||||||
|
typescript API are installed and in your PATH, then:
|
||||||
|
>
|
||||||
|
cd ~/.vim/bundle/YouCompleteMe
|
||||||
|
./install.py --clang-completer --omnisharp-completer --gocode-completer --tern-completer
|
||||||
|
<
|
||||||
That's it. You're done. Refer to the _User Guide_ section on how to use YCM.
|
That's it. You're done. Refer to the _User Guide_ section on how to use YCM.
|
||||||
Don't forget that if you want the C-family semantic completion engine to work,
|
Don't forget that if you want the C-family semantic completion engine to work,
|
||||||
you will need to provide the compilation flags for your project to YCM. It's
|
you will need to provide the compilation flags for your project to YCM. It's
|
||||||
@ -330,9 +347,9 @@ provided on a best-effort basis and may not work for you.
|
|||||||
Make sure you have Vim 7.3.598 with python2 support. Ubuntu 14.04 and later
|
Make sure you have Vim 7.3.598 with python2 support. Ubuntu 14.04 and later
|
||||||
have a Vim that's recent enough. You can see the version of Vim installed by
|
have a Vim that's recent enough. You can see the version of Vim installed by
|
||||||
running 'vim --version'. If the version is too old, you may need to compile Vim
|
running 'vim --version'. If the version is too old, you may need to compile Vim
|
||||||
from source [19] (don't worry, it's easy).
|
from source [20] (don't worry, it's easy).
|
||||||
|
|
||||||
Install YouCompleteMe with Vundle [15].
|
Install YouCompleteMe with Vundle [16].
|
||||||
|
|
||||||
**Remember:** YCM is a plugin with a compiled component. If you **update** YCM
|
**Remember:** YCM is a plugin with a compiled component. If you **update** YCM
|
||||||
using Vundle and the ycm_support_libs library APIs have changed (happens
|
using Vundle and the ycm_support_libs library APIs have changed (happens
|
||||||
@ -354,11 +371,21 @@ Compiling YCM **without** semantic support for C-family languages:
|
|||||||
cd ~/.vim/bundle/YouCompleteMe
|
cd ~/.vim/bundle/YouCompleteMe
|
||||||
./install.py
|
./install.py
|
||||||
<
|
<
|
||||||
If you want semantic C# support, you should add '--omnisharp-completer' to the
|
The following additional language support options are available:
|
||||||
install script as well. If you want Go support, you should add '--gocode-
|
|
||||||
completer'. If you want semantic TypeScript support, install the TypeScript SDK
|
|
||||||
with 'npm install -g typescript' (you'll need to install nodejs and npm [18]).
|
|
||||||
|
|
||||||
|
- C# support: add '--omnisharp-completer' to './install.py'
|
||||||
|
- Go support: ensure go is installed and add '--gocode-completer'
|
||||||
|
- TypeScript support: install nodejs and npm [19] then install the TypeScript
|
||||||
|
SDK with 'npm install -g typescript'.
|
||||||
|
- JavaScript support: install nodejs and npm [19] and add '--tern-completer'
|
||||||
|
to './install.py'
|
||||||
|
|
||||||
|
For example, to install with all language features, ensure node, go, mono and
|
||||||
|
typescript API are installed and in your PATH, then:
|
||||||
|
>
|
||||||
|
cd ~/.vim/bundle/YouCompleteMe
|
||||||
|
./install.py --clang-completer --omnisharp-completer --gocode-completer --tern-completer
|
||||||
|
<
|
||||||
That's it. You're done. Refer to the _User Guide_ section on how to use YCM.
|
That's it. You're done. Refer to the _User Guide_ section on how to use YCM.
|
||||||
Don't forget that if you want the C-family semantic completion engine to work,
|
Don't forget that if you want the C-family semantic completion engine to work,
|
||||||
you will need to provide the compilation flags for your project to YCM. It's
|
you will need to provide the compilation flags for your project to YCM. It's
|
||||||
@ -378,9 +405,9 @@ provided on a best-effort basis and may not work for you.
|
|||||||
Make sure you have Vim 7.3.598 with python2 support. Fedora 21 and later have a
|
Make sure you have Vim 7.3.598 with python2 support. Fedora 21 and later have a
|
||||||
Vim that's recent enough. You can see the version of Vim installed by running
|
Vim that's recent enough. You can see the version of Vim installed by running
|
||||||
'vim --version'. If the version is too old, you may need to compile Vim from
|
'vim --version'. If the version is too old, you may need to compile Vim from
|
||||||
source [19] (don't worry, it's easy).
|
source [20] (don't worry, it's easy).
|
||||||
|
|
||||||
Install YouCompleteMe with Vundle [15].
|
Install YouCompleteMe with Vundle [16].
|
||||||
|
|
||||||
**Remember:** YCM is a plugin with a compiled component. If you **update** YCM
|
**Remember:** YCM is a plugin with a compiled component. If you **update** YCM
|
||||||
using Vundle and the ycm_support_libs library APIs have changed (happens
|
using Vundle and the ycm_support_libs library APIs have changed (happens
|
||||||
@ -402,11 +429,21 @@ Compiling YCM **without** semantic support for C-family languages:
|
|||||||
cd ~/.vim/bundle/YouCompleteMe
|
cd ~/.vim/bundle/YouCompleteMe
|
||||||
./install.py
|
./install.py
|
||||||
<
|
<
|
||||||
If you want semantic C# support, you should add '--omnisharp-completer' to the
|
The following additional language support options are available:
|
||||||
install script as well. If you want Go support, you should add '--gocode-
|
|
||||||
completer'. If you want semantic TypeScript support, install the TypeScript SDK
|
|
||||||
with 'npm install -g typescript' (you'll need to install nodejs and npm [18]).
|
|
||||||
|
|
||||||
|
- C# support: add '--omnisharp-completer' to './install.py'
|
||||||
|
- Go support: ensure go is installed and add '--gocode-completer'
|
||||||
|
- TypeScript support: install nodejs and npm [19] then install the TypeScript
|
||||||
|
SDK with 'npm install -g typescript'.
|
||||||
|
- JavaScript support: install nodejs and npm [19] and add '--tern-completer'
|
||||||
|
to './install.py'
|
||||||
|
|
||||||
|
For example, to install with all language features, ensure node, go, mono and
|
||||||
|
typescript API are installed and in your PATH, then:
|
||||||
|
>
|
||||||
|
cd ~/.vim/bundle/YouCompleteMe
|
||||||
|
./install.py --clang-completer --omnisharp-completer --gocode-completer --tern-completer
|
||||||
|
<
|
||||||
That's it. You're done. Refer to the _User Guide_ section on how to use YCM.
|
That's it. You're done. Refer to the _User Guide_ section on how to use YCM.
|
||||||
Don't forget that if you want the C-family semantic completion engine to work,
|
Don't forget that if you want the C-family semantic completion engine to work,
|
||||||
you will need to provide the compilation flags for your project to YCM. It's
|
you will need to provide the compilation flags for your project to YCM. It's
|
||||||
@ -430,9 +467,9 @@ Make sure you have at least Vim 7.3.598 with python2 support. You can check the
|
|||||||
version by typing ':version' inside Vim. Take note of the Vim architecture,
|
version by typing ':version' inside Vim. Take note of the Vim architecture,
|
||||||
i.e. 32 or 64-bit. It will be important when choosing the python2 installer. We
|
i.e. 32 or 64-bit. It will be important when choosing the python2 installer. We
|
||||||
recommend using a 64-bit client. Don't worry, a frequently updated copy of
|
recommend using a 64-bit client. Don't worry, a frequently updated copy of
|
||||||
64-bit Vim [20] is available.
|
64-bit Vim [21] is available.
|
||||||
|
|
||||||
Install YouCompleteMe with Vundle [15].
|
Install YouCompleteMe with Vundle [16].
|
||||||
|
|
||||||
**Remember:** YCM is a plugin with a compiled component. If you **update** YCM
|
**Remember:** YCM is a plugin with a compiled component. If you **update** YCM
|
||||||
using Vundle and the ycm_support_libs library APIs have changed (happens
|
using Vundle and the ycm_support_libs library APIs have changed (happens
|
||||||
@ -441,16 +478,16 @@ process.
|
|||||||
|
|
||||||
Download and install the following software:
|
Download and install the following software:
|
||||||
|
|
||||||
- python2 [21]. Be sure to pick the version corresponding to your Vim
|
- python2 [22]. Be sure to pick the version corresponding to your Vim
|
||||||
architecture. It is _Windows x86-64 MSI installer_ if you are using the Vim
|
architecture. It is _Windows x86-64 MSI installer_ if you are using the Vim
|
||||||
previously linked.
|
previously linked.
|
||||||
|
|
||||||
- CMake [17]. Add CMake executable to the PATH environment variable.
|
- CMake [18]. Add CMake executable to the PATH environment variable.
|
||||||
|
|
||||||
- Visual Studio [22]. Download the community edition. During setup, choose
|
- Visual Studio [23]. Download the community edition. During setup, choose
|
||||||
_Custom_ as the installation type and select the _Visual C++_ component.
|
_Custom_ as the installation type and select the _Visual C++_ component.
|
||||||
|
|
||||||
- 7-zip [23]. Required to build YCM with semantic support for C-family
|
- 7-zip [24]. Required to build YCM with semantic support for C-family
|
||||||
languages.
|
languages.
|
||||||
|
|
||||||
Compiling YCM **with** semantic support for C-family languages:
|
Compiling YCM **with** semantic support for C-family languages:
|
||||||
@ -463,11 +500,21 @@ Compiling YCM **without** semantic support for C-family languages:
|
|||||||
cd %USERPROFILE%/vimfiles/bundle/YouCompleteMe
|
cd %USERPROFILE%/vimfiles/bundle/YouCompleteMe
|
||||||
install.py
|
install.py
|
||||||
<
|
<
|
||||||
If you want semantic C# support, you should add '--omnisharp-completer' to the
|
The following additional language support options are available:
|
||||||
install script as well. If you want Go support, you should add '--gocode-
|
|
||||||
completer'. If you want semantic TypeScript support, install the TypeScript SDK
|
|
||||||
with 'npm install -g typescript' (you'll need to install nodejs and npm [18]).
|
|
||||||
|
|
||||||
|
- C# support: add '--omnisharp-completer' to './install.py'
|
||||||
|
- Go support: ensure go is installed and add '--gocode-completer'
|
||||||
|
- TypeScript support: install nodejs and npm [19] then install the TypeScript
|
||||||
|
SDK with 'npm install -g typescript'.
|
||||||
|
- JavaScript support: install nodejs and npm [19] and add '--tern-completer'
|
||||||
|
to './install.py'
|
||||||
|
|
||||||
|
For example, to install with all language features, ensure npm, go, mono and
|
||||||
|
typescript API are installed and in your '%PATH%', then:
|
||||||
|
>
|
||||||
|
cd %USERPROFILE%/vimfiles/bundle/YouCompleteMe
|
||||||
|
python install.py --clang-completer --omnisharp-completer --gocode-completer --tern-completer
|
||||||
|
<
|
||||||
You can specify the Microsoft Visual C++ (MSVC) version using the '--msvc'
|
You can specify the Microsoft Visual C++ (MSVC) version using the '--msvc'
|
||||||
option. YCM officially supports MSVC 11 (Visual Studio 2012), 12 (2013), and 14
|
option. YCM officially supports MSVC 11 (Visual Studio 2012), 12 (2013), and 14
|
||||||
(2015).
|
(2015).
|
||||||
@ -499,7 +546,7 @@ FreeBSD 10.x comes with clang compiler but not the libraries needed to install.
|
|||||||
pkg install llvm35 boost-all boost-python-libs clang35
|
pkg install llvm35 boost-all boost-python-libs clang35
|
||||||
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/llvm35/lib/
|
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/llvm35/lib/
|
||||||
<
|
<
|
||||||
Install YouCompleteMe with Vundle [15].
|
Install YouCompleteMe with Vundle [16].
|
||||||
|
|
||||||
**Remember:** YCM is a plugin with a compiled component. If you **update** YCM
|
**Remember:** YCM is a plugin with a compiled component. If you **update** YCM
|
||||||
using Vundle and the ycm_support_libs library APIs have changed (happens
|
using Vundle and the ycm_support_libs library APIs have changed (happens
|
||||||
@ -518,10 +565,21 @@ Compiling YCM **without** semantic support for C-family languages:
|
|||||||
cd ~/.vim/bundle/YouCompleteMe
|
cd ~/.vim/bundle/YouCompleteMe
|
||||||
./install.py --system-boost
|
./install.py --system-boost
|
||||||
<
|
<
|
||||||
If you want semantic C# support, you should add '--omnisharp-completer' to the
|
The following additional language support options are available:
|
||||||
install script as well. If you want Go support, you should add '--gocode-
|
|
||||||
completer'.
|
|
||||||
|
|
||||||
|
- C# support: add '--omnisharp-completer' to './install.py'
|
||||||
|
- Go support: ensure go is installed and add '--gocode-completer'
|
||||||
|
- TypeScript support: install nodejs and npm [19] then install the TypeScript
|
||||||
|
SDK with 'npm install -g typescript'.
|
||||||
|
- JavaScript support: install nodejs and npm [19] and add '--tern-completer'
|
||||||
|
to './install.py'
|
||||||
|
|
||||||
|
For example, to install with all language features, ensure npm, go, mono and
|
||||||
|
typescript API are installed and in your PATH, then:
|
||||||
|
>
|
||||||
|
cd ~/.vim/bundle/YouCompleteMe
|
||||||
|
./install.py --clang-completer --omnisharp-completer --gocode-completer --tern-completer
|
||||||
|
<
|
||||||
That's it. You're done. Refer to the _User Guide_ section on how to use YCM.
|
That's it. You're done. Refer to the _User Guide_ section on how to use YCM.
|
||||||
Don't forget that if you want the C-family semantic completion engine to work,
|
Don't forget that if you want the C-family semantic completion engine to work,
|
||||||
you will need to provide the compilation flags for your project to YCM. It's
|
you will need to provide the compilation flags for your project to YCM. It's
|
||||||
@ -562,7 +620,7 @@ process.
|
|||||||
1-Z', where Z will be some number. That number needs to be 598 or higher.
|
1-Z', where Z will be some number. That number needs to be 598 or higher.
|
||||||
|
|
||||||
If your version of Vim is not recent enough, you may need to compile Vim
|
If your version of Vim is not recent enough, you may need to compile Vim
|
||||||
from source [19] (don't worry, it's easy).
|
from source [20] (don't worry, it's easy).
|
||||||
|
|
||||||
After you have made sure that you have Vim 7.3.598+, type the following
|
After you have made sure that you have Vim 7.3.598+, type the following
|
||||||
in Vim: ":echo has('python')". The output should be 1. If it's 0, then
|
in Vim: ":echo has('python')". The output should be 1. If it's 0, then
|
||||||
@ -572,9 +630,9 @@ process.
|
|||||||
critical because it must match the python2 and the YCM libraries
|
critical because it must match the python2 and the YCM libraries
|
||||||
architectures. We recommend using a 64-bit Vim.
|
architectures. We recommend using a 64-bit Vim.
|
||||||
|
|
||||||
2. **Install YCM** with Vundle [15] (or Pathogen [24], but Vundle is a
|
2. **Install YCM** with Vundle [16] (or Pathogen [25], but Vundle is a
|
||||||
better idea). With Vundle, this would mean adding a "Plugin
|
better idea). With Vundle, this would mean adding a "Plugin
|
||||||
'Valloric/YouCompleteMe'" line to your vimrc [25].
|
'Valloric/YouCompleteMe'" line to your vimrc [26].
|
||||||
|
|
||||||
If you don't install YCM with Vundle, make sure you have run 'git
|
If you don't install YCM with Vundle, make sure you have run 'git
|
||||||
submodule update --init --recursive' after checking out the YCM
|
submodule update --init --recursive' after checking out the YCM
|
||||||
@ -591,7 +649,7 @@ process.
|
|||||||
|
|
||||||
You can use the system libclang _only if you are sure it is version 3.3
|
You can use the system libclang _only if you are sure it is version 3.3
|
||||||
or higher_, otherwise don't. Even if it is, we recommend using the
|
or higher_, otherwise don't. Even if it is, we recommend using the
|
||||||
official binaries from llvm.org [26] if at all possible. Make sure you
|
official binaries from llvm.org [27] if at all possible. Make sure you
|
||||||
download the correct archive file for your OS.
|
download the correct archive file for your OS.
|
||||||
|
|
||||||
We **STRONGLY recommend AGAINST use** of the system libclang instead of
|
We **STRONGLY recommend AGAINST use** of the system libclang instead of
|
||||||
@ -604,17 +662,17 @@ process.
|
|||||||
You will need to have 'cmake' installed in order to generate the required
|
You will need to have 'cmake' installed in order to generate the required
|
||||||
makefiles. Linux users can install cmake with their package manager
|
makefiles. Linux users can install cmake with their package manager
|
||||||
('sudo apt-get install cmake' for Ubuntu) whereas other users can
|
('sudo apt-get install cmake' for Ubuntu) whereas other users can
|
||||||
download and install [17] cmake from its project site. Mac users can also
|
download and install [18] cmake from its project site. Mac users can also
|
||||||
get it through Homebrew [16] with 'brew install cmake'.
|
get it through Homebrew [17] with 'brew install cmake'.
|
||||||
|
|
||||||
On a Unix OS, you need to make sure you have Python headers installed. On
|
On a Unix OS, you need to make sure you have Python headers installed. On
|
||||||
a Debian-like Linux distro, this would be 'sudo apt-get install python-
|
a Debian-like Linux distro, this would be 'sudo apt-get install python-
|
||||||
dev'. On Mac they should already be present.
|
dev'. On Mac they should already be present.
|
||||||
|
|
||||||
On Windows, you need to download and install python2 [21]. Pick the
|
On Windows, you need to download and install python2 [22]. Pick the
|
||||||
version corresponding to your Vim architecture. You will also need
|
version corresponding to your Vim architecture. You will also need
|
||||||
Microsoft Visual C++ (MSVC) to build YCM. You can obtain it by installing
|
Microsoft Visual C++ (MSVC) to build YCM. You can obtain it by installing
|
||||||
Visual Studio [22]. MSVC 11 (Visual Studio 2012), 12 (2013), and 14
|
Visual Studio [23]. MSVC 11 (Visual Studio 2012), 12 (2013), and 14
|
||||||
(2015) are officially supported.
|
(2015) are officially supported.
|
||||||
|
|
||||||
Here we'll assume you installed YCM with Vundle. That means that the top-
|
Here we'll assume you installed YCM with Vundle. That means that the top-
|
||||||
@ -657,7 +715,7 @@ process.
|
|||||||
extracted the archive file to folder '~/ycm_temp/llvm_root_dir' (with
|
extracted the archive file to folder '~/ycm_temp/llvm_root_dir' (with
|
||||||
'bin', 'lib', 'include' etc. folders right inside that folder). On
|
'bin', 'lib', 'include' etc. folders right inside that folder). On
|
||||||
Windows, you can extract the files from the LLVM+Clang installer using
|
Windows, you can extract the files from the LLVM+Clang installer using
|
||||||
7-zip [23].
|
7-zip [24].
|
||||||
|
|
||||||
NOTE: This _only_ works with a _downloaded_ LLVM binary package, not a
|
NOTE: This _only_ works with a _downloaded_ LLVM binary package, not a
|
||||||
custom-built LLVM! See docs below for 'EXTERNAL_LIBCLANG_PATH' when using
|
custom-built LLVM! See docs below for 'EXTERNAL_LIBCLANG_PATH' when using
|
||||||
@ -696,6 +754,24 @@ process.
|
|||||||
in the 'YouCompleteMe/third_party/ycmd' folder for you if you compiled
|
in the 'YouCompleteMe/third_party/ycmd' folder for you if you compiled
|
||||||
with clang support (it needs to be there for YCM to work).
|
with clang support (it needs to be there for YCM to work).
|
||||||
|
|
||||||
|
5. Set up support for additional languages, as desired:
|
||||||
|
|
||||||
|
6. C# support: Navigate to 'YouCompleteMe/third-party/ycmd/third-
|
||||||
|
party/OmniSharpServer' and run 'msbuild' (Windows) or 'xbuild' (other
|
||||||
|
platforms, using mono) depending on your platform. If mono is not
|
||||||
|
installed, install it.
|
||||||
|
|
||||||
|
7. Go support: If go is not installed on your system, install it and add it
|
||||||
|
to your path. Navigate to 'YouCompleteMe/third-party/ycmd/third-
|
||||||
|
party/gocode' and run 'go build'.
|
||||||
|
|
||||||
|
8. TypeScript support: As with the quick installation, simply 'npm install
|
||||||
|
-g typescript' after successfully installing nodejs and npm [19].
|
||||||
|
|
||||||
|
9. JavaScript support: Install nodejs and npm [19]. Then navigate to
|
||||||
|
'YouCompleteMe/third-party/ycmd/third-party/tern' and run 'npm install
|
||||||
|
--production'
|
||||||
|
|
||||||
That's it. You're done. Refer to the _User Guide_ section on how to use YCM.
|
That's it. You're done. Refer to the _User Guide_ section on how to use YCM.
|
||||||
Don't forget that if you want the C-family semantic completion engine to work,
|
Don't forget that if you want the C-family semantic completion engine to work,
|
||||||
you will need to provide the compilation flags for your project to YCM. It's
|
you will need to provide the compilation flags for your project to YCM. It's
|
||||||
@ -766,6 +842,16 @@ TypeScript ~
|
|||||||
- Semantic type information for identifiers (|GetType|)
|
- Semantic type information for identifiers (|GetType|)
|
||||||
- View documentation comments for identifiers (|GetDoc|)
|
- View documentation comments for identifiers (|GetDoc|)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------------------
|
||||||
|
*youcompleteme-javascript*
|
||||||
|
JavaScript ~
|
||||||
|
|
||||||
|
- Intelligent auto-completion
|
||||||
|
- Go to definition, find references (|GoToDefinition|, |GoToReferences|)
|
||||||
|
- Type information for identifiers (|GetType|)
|
||||||
|
- View documentation comments for identifiers (|GetDoc|)
|
||||||
|
- Management of 'Tern' server instance
|
||||||
|
|
||||||
===============================================================================
|
===============================================================================
|
||||||
*youcompleteme-user-guide*
|
*youcompleteme-user-guide*
|
||||||
User Guide ~
|
User Guide ~
|
||||||
@ -788,7 +874,7 @@ General Usage ~
|
|||||||
through the completions. Use Shift-TAB to cycle backwards. Note that if
|
through the completions. Use Shift-TAB to cycle backwards. Note that if
|
||||||
you're using console Vim (that is, not Gvim or MacVim) then it's likely
|
you're using console Vim (that is, not Gvim or MacVim) then it's likely
|
||||||
that the Shift-TAB binding will not work because the console will not pass
|
that the Shift-TAB binding will not work because the console will not pass
|
||||||
it to Vim. You can remap the keys; see the _Options [27]_ section below.
|
it to Vim. You can remap the keys; see the _Options [28]_ section below.
|
||||||
|
|
||||||
Knowing a little bit about how YCM works internally will prevent confusion. YCM
|
Knowing a little bit about how YCM works internally will prevent confusion. YCM
|
||||||
has several completion engines: an identifier-based completer that collects all
|
has several completion engines: an identifier-based completer that collects all
|
||||||
@ -859,20 +945,20 @@ This system was designed this way so that the user can perform any arbitrary
|
|||||||
sequence of operations to produce a list of compilation flags YCM should hand
|
sequence of operations to produce a list of compilation flags YCM should hand
|
||||||
to Clang.
|
to Clang.
|
||||||
|
|
||||||
See YCM's own '.ycm_extra_conf.py' [28] for details on how this works. You
|
See YCM's own '.ycm_extra_conf.py' [29] for details on how this works. You
|
||||||
should be able to use it _as a starting point_. **Don't** just copy/paste that
|
should be able to use it _as a starting point_. **Don't** just copy/paste that
|
||||||
file somewhere and expect things to magically work; **your project needs
|
file somewhere and expect things to magically work; **your project needs
|
||||||
different flags**. Hint: just replace the strings in the 'flags' variable with
|
different flags**. Hint: just replace the strings in the 'flags' variable with
|
||||||
compilation flags necessary for your project. That should be enough for 99% of
|
compilation flags necessary for your project. That should be enough for 99% of
|
||||||
projects.
|
projects.
|
||||||
|
|
||||||
Yes, Clang's 'CompilationDatabase' system [29] is also supported. Again, see
|
Yes, Clang's 'CompilationDatabase' system [30] is also supported. Again, see
|
||||||
the above linked example file. You can get CMake to generate this file for you
|
the above linked example file. You can get CMake to generate this file for you
|
||||||
by adding 'set( CMAKE_EXPORT_COMPILE_COMMANDS 1 )' to your project's
|
by adding 'set( CMAKE_EXPORT_COMPILE_COMMANDS 1 )' to your project's
|
||||||
'CMakeLists.txt' file (if using CMake). If you're not using CMake, you could
|
'CMakeLists.txt' file (if using CMake). If you're not using CMake, you could
|
||||||
use something like Bear [30] to generate the 'compile_commands.json' file.
|
use something like Bear [31] to generate the 'compile_commands.json' file.
|
||||||
|
|
||||||
Consider using YCM-Generator [31] to generate the 'ycm_extra_conf.py' file.
|
Consider using YCM-Generator [32] to generate the 'ycm_extra_conf.py' file.
|
||||||
|
|
||||||
If Clang encounters errors when compiling the header files that your file
|
If Clang encounters errors when compiling the header files that your file
|
||||||
includes, then it's probably going to take a long time to get completions. When
|
includes, then it's probably going to take a long time to get completions. When
|
||||||
@ -885,6 +971,103 @@ to getting fast completions.
|
|||||||
Call the |:YcmDiags| command to see if any errors or warnings were detected in
|
Call the |:YcmDiags| command to see if any errors or warnings were detected in
|
||||||
your file.
|
your file.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------------------
|
||||||
|
*youcompleteme-javascript-semantic-completion*
|
||||||
|
JavaScript semantic completion ~
|
||||||
|
|
||||||
|
-------------------------------------------------------------------------------
|
||||||
|
*youcompleteme-quick-start*
|
||||||
|
Quick start ~
|
||||||
|
|
||||||
|
1. Ensure that you have enabled the Tern completer. See the installation
|
||||||
|
guide for details.
|
||||||
|
|
||||||
|
2. Create a '.tern-project' file in the root directory of your JavaScript
|
||||||
|
project, by following the instructions [33] in the Tern [10]
|
||||||
|
documentation.
|
||||||
|
|
||||||
|
3. Make sure that Vim's working directory is a descendent of that directory
|
||||||
|
(or that directory itself) when working with JavaScript files.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------------------
|
||||||
|
*youcompleteme-explanation*
|
||||||
|
Explanation ~
|
||||||
|
|
||||||
|
JavaScript completion is based on Tern [10]. This completion engine requires a
|
||||||
|
file named '.tern-project' [33] to exist in the current working directory or a
|
||||||
|
directory which is an ancestor of the current working directory when the tern
|
||||||
|
server is started. YCM starts the Tern server the first time a JavaScript file
|
||||||
|
is edited, so Vim's working directory at that time needs to be a descendent of
|
||||||
|
the directory containing the '.tern-project' file (or that directory itself).
|
||||||
|
|
||||||
|
Alternatively, as described in the Tern documentation [34], a global '.tern-
|
||||||
|
config' file may be used.
|
||||||
|
|
||||||
|
Multiple Tern servers, are not supported. To switch to a different JavaScript
|
||||||
|
project, you can do one of the following:
|
||||||
|
|
||||||
|
- start a new instance of Vim from the new project's directory
|
||||||
|
|
||||||
|
- change Vim's working directory (':cd /path/to/new/project') and restart the
|
||||||
|
'ycmd' server (|:YcmRestartServer|)
|
||||||
|
|
||||||
|
- change Vim's working directory (':cd /path/to/new/project'), open a
|
||||||
|
JavaScript file (or set filetype to JavaScript) and restart the Tern server
|
||||||
|
using YCM completer subcommands ':YcmCompleter StopServer' and
|
||||||
|
':YcmCompleter StartServer'.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------------------
|
||||||
|
*youcompleteme-tips-tricks*
|
||||||
|
Tips and tricks ~
|
||||||
|
|
||||||
|
This section contains some advice for configuring '.tern-project' and working
|
||||||
|
with JavaScript files. The canonical reference for correctly configuring Tern
|
||||||
|
is the Tern documentation [34]. Any issues, improvements, advice, etc. should
|
||||||
|
be sought from the Tern [10] project. For example, see the list of tern plugins
|
||||||
|
[35] for the list of plugins which can be enabled in the 'plugins' section of
|
||||||
|
the '.tern-project' file.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------------------
|
||||||
|
*youcompleteme-configuring-tern-for-node-support*
|
||||||
|
Configuring Tern for node support ~
|
||||||
|
|
||||||
|
The following simple example '.tern-project' file enables nodejs support:
|
||||||
|
>
|
||||||
|
{
|
||||||
|
"plugins": {
|
||||||
|
"node": {}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
<
|
||||||
|
-------------------------------------------------------------------------------
|
||||||
|
*youcompleteme-configuring-tern-for-requirejs-support*
|
||||||
|
Configuring Tern for requirejs support ~
|
||||||
|
|
||||||
|
The Tern requirejs plugin requires that all included "libraries" are rooted
|
||||||
|
under the same base directory. If that's not the case for your projects, then
|
||||||
|
it is possible to make it work with appropriate symbolic links. For example,
|
||||||
|
create a directory 'ext_lib' within your project and populate it with symlinks
|
||||||
|
to your libraries. Then set up the '.tern-project' something like this:
|
||||||
|
>
|
||||||
|
{
|
||||||
|
"plugins": {
|
||||||
|
"requirejs": {
|
||||||
|
"baseURL": "./ext_lib",
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
<
|
||||||
|
Then, given the following structure:
|
||||||
|
>
|
||||||
|
./ext_lib/mylib (symlink)
|
||||||
|
./ext_lib/anotherlib (symlink)
|
||||||
|
<
|
||||||
|
Can be used as follows:
|
||||||
|
>
|
||||||
|
define( [ 'mylib/file1', 'anotherlib/anotherfile' ], function( f1, f2 ) {
|
||||||
|
// etc.
|
||||||
|
} );
|
||||||
|
<
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
*youcompleteme-semantic-completion-for-other-languages*
|
*youcompleteme-semantic-completion-for-other-languages*
|
||||||
Semantic completion for other languages ~
|
Semantic completion for other languages ~
|
||||||
@ -899,7 +1082,7 @@ semantic completions if it does not have a native semantic completion engine
|
|||||||
for your file's filetype. Vim comes with okayish omnifuncs for various
|
for your file's filetype. Vim comes with okayish omnifuncs for various
|
||||||
languages like Ruby, PHP etc. It depends on the language.
|
languages like Ruby, PHP etc. It depends on the language.
|
||||||
|
|
||||||
You can get stellar omnifuncs for Java and Ruby with Eclim [32]. Just make sure
|
You can get stellar omnifuncs for Java and Ruby with Eclim [36]. Just make sure
|
||||||
you have the _latest_ Eclim installed and configured (this means Eclim '>=
|
you have the _latest_ Eclim installed and configured (this means Eclim '>=
|
||||||
2.2.*' and Eclipse '>= 4.2.*').
|
2.2.*' and Eclipse '>= 4.2.*').
|
||||||
|
|
||||||
@ -917,7 +1100,7 @@ Writing New Semantic Completers ~
|
|||||||
|
|
||||||
You have two options here: writing an 'omnifunc' for Vim's omnicomplete system
|
You have two options here: writing an 'omnifunc' for Vim's omnicomplete system
|
||||||
that YCM will then use through its omni-completer, or a custom completer for
|
that YCM will then use through its omni-completer, or a custom completer for
|
||||||
YCM using the Completer API [33].
|
YCM using the Completer API [37].
|
||||||
|
|
||||||
Here are the differences between the two approaches:
|
Here are the differences between the two approaches:
|
||||||
|
|
||||||
@ -936,7 +1119,7 @@ Here are the differences between the two approaches:
|
|||||||
than VimScript.
|
than VimScript.
|
||||||
|
|
||||||
If you want to use the 'omnifunc' system, see the relevant Vim docs with ':h
|
If you want to use the 'omnifunc' system, see the relevant Vim docs with ':h
|
||||||
complete-functions'. For the Completer API, see the API docs [33].
|
complete-functions'. For the Completer API, see the API docs [37].
|
||||||
|
|
||||||
If you want to upstream your completer into YCM's source, you should use the
|
If you want to upstream your completer into YCM's source, you should use the
|
||||||
Completer API.
|
Completer API.
|
||||||
@ -987,7 +1170,7 @@ current file in Vim's 'locationlist', which can be opened with the ':lopen' and
|
|||||||
':lclose' commands (make sure you have set 'let
|
':lclose' commands (make sure you have set 'let
|
||||||
g:ycm_always_populate_location_list = 1' in your vimrc). A good way to toggle
|
g:ycm_always_populate_location_list = 1' in your vimrc). A good way to toggle
|
||||||
the display of the 'locationlist' with a single key mapping is provided by
|
the display of the 'locationlist' with a single key mapping is provided by
|
||||||
another (very small) Vim plugin called ListToggle [34] (which also makes it
|
another (very small) Vim plugin called ListToggle [38] (which also makes it
|
||||||
possible to change the height of the 'locationlist' window), also written by
|
possible to change the height of the 'locationlist' window), also written by
|
||||||
yours truly.
|
yours truly.
|
||||||
|
|
||||||
@ -1150,7 +1333,8 @@ when the definition of the symbol is in the current translation unit. A
|
|||||||
translation unit consists of the file you are editing and all the files you are
|
translation unit consists of the file you are editing and all the files you are
|
||||||
including with '#include' directives (directly or indirectly) in that file.
|
including with '#include' directives (directly or indirectly) in that file.
|
||||||
|
|
||||||
Supported in filetypes: 'c, cpp, objc, objcpp, python, cs, typescript'
|
Supported in filetypes: 'c, cpp, objc, objcpp, python, cs, typescript,
|
||||||
|
javascript'
|
||||||
|
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
The *GoTo* subcommand
|
The *GoTo* subcommand
|
||||||
@ -1162,7 +1346,7 @@ the current translation unit, jumps to the symbol's declaration. For
|
|||||||
C/C++/Objective-C, it first tries to look up the current line for a header and
|
C/C++/Objective-C, it first tries to look up the current line for a header and
|
||||||
jump to it. For C#, implementations are also considered and preferred.
|
jump to it. For C#, implementations are also considered and preferred.
|
||||||
|
|
||||||
Supported in filetypes: 'c, cpp, objc, objcpp, python, cs'
|
Supported in filetypes: 'c, cpp, objc, objcpp, python, cs, javascript'
|
||||||
|
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
The *GoToImprecise* subcommand
|
The *GoToImprecise* subcommand
|
||||||
@ -1178,6 +1362,15 @@ bit of latency.
|
|||||||
|
|
||||||
Supported in filetypes: 'c, cpp, objc, objcpp'
|
Supported in filetypes: 'c, cpp, objc, objcpp'
|
||||||
|
|
||||||
|
-------------------------------------------------------------------------------
|
||||||
|
The *GoToReferences* subcommand
|
||||||
|
|
||||||
|
This command attempts to find all of the references within the project to the
|
||||||
|
identifier under the cursor and populates the quickfix list with those
|
||||||
|
locations.
|
||||||
|
|
||||||
|
Supported in filetypes: 'javascript'
|
||||||
|
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
The *ClearCompilationFlagCache* subcommand
|
The *ClearCompilationFlagCache* subcommand
|
||||||
|
|
||||||
@ -1215,9 +1408,9 @@ For example:
|
|||||||
// invoking on s returns "const char *"
|
// invoking on s returns "const char *"
|
||||||
std::cout << *x; // invoking on x returns "const char ** => const char **"
|
std::cout << *x; // invoking on x returns "const char ** => const char **"
|
||||||
<
|
<
|
||||||
NOTE: Causes reparsing of the current translation unit.
|
NOTE: Causes re-parsing of the current translation unit.
|
||||||
|
|
||||||
Supported in filetypes: 'c, cpp, objc, objcpp, typescript'
|
Supported in filetypes: 'c, cpp, objc, objcpp, typescript, javascript'
|
||||||
|
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
The *GetParent* subcommand
|
The *GetParent* subcommand
|
||||||
@ -1245,7 +1438,7 @@ context of the second 'C::f' is the translation unit.
|
|||||||
|
|
||||||
For global declarations, the semantic parent is the translation unit.
|
For global declarations, the semantic parent is the translation unit.
|
||||||
|
|
||||||
NOTE: Causes reparsing of the current translation unit.
|
NOTE: Causes re-parsing of the current translation unit.
|
||||||
|
|
||||||
Supported in filetypes: 'c, cpp, objc, objcpp'
|
Supported in filetypes: 'c, cpp, objc, objcpp'
|
||||||
|
|
||||||
@ -1296,7 +1489,8 @@ under the cursor. This includes, depending on the language, things like:
|
|||||||
- Python docstrings
|
- Python docstrings
|
||||||
- etc.
|
- etc.
|
||||||
|
|
||||||
Supported in filetypes: 'c, cpp, objc, objcpp, cs, python, typescript'
|
Supported in filetypes: 'c, cpp, objc, objcpp, cs, python, typescript,
|
||||||
|
javascript'
|
||||||
|
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
The *StartServer* subcommand
|
The *StartServer* subcommand
|
||||||
@ -1304,7 +1498,7 @@ The *StartServer* subcommand
|
|||||||
Starts the semantic-engine-as-localhost-server for those semantic engines that
|
Starts the semantic-engine-as-localhost-server for those semantic engines that
|
||||||
work as separate servers that YCM talks to.
|
work as separate servers that YCM talks to.
|
||||||
|
|
||||||
Supported in filetypes: 'cs'
|
Supported in filetypes: 'cs, javascript, go'
|
||||||
|
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
The *StopServer* subcommand
|
The *StopServer* subcommand
|
||||||
@ -1312,7 +1506,7 @@ The *StopServer* subcommand
|
|||||||
Stops the semantic-engine-as-localhost-server for those semantic engines that
|
Stops the semantic-engine-as-localhost-server for those semantic engines that
|
||||||
work as separate servers that YCM talks to.
|
work as separate servers that YCM talks to.
|
||||||
|
|
||||||
Supported in filetypes: 'cs'
|
Supported in filetypes: 'cs, javascript, go'
|
||||||
|
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
The *RestartServer* subcommand
|
The *RestartServer* subcommand
|
||||||
@ -1364,7 +1558,7 @@ For example:
|
|||||||
call youcompleteme#GetErrorCount()
|
call youcompleteme#GetErrorCount()
|
||||||
<
|
<
|
||||||
Both this function and |youcompleteme#GetWarningCount| can be useful when
|
Both this function and |youcompleteme#GetWarningCount| can be useful when
|
||||||
integrating YCM with other Vim plugins. For example, a lightline [48] user
|
integrating YCM with other Vim plugins. For example, a lightline [39] user
|
||||||
could add a diagnostics section to their statusline which would display the
|
could add a diagnostics section to their statusline which would display the
|
||||||
number of errors and warnings.
|
number of errors and warnings.
|
||||||
|
|
||||||
@ -1384,11 +1578,11 @@ Options ~
|
|||||||
|
|
||||||
All options have reasonable defaults so if the plug-in works after installation
|
All options have reasonable defaults so if the plug-in works after installation
|
||||||
you don't need to change any options. These options can be configured in your
|
you don't need to change any options. These options can be configured in your
|
||||||
vimrc script [25] by including a line like this:
|
vimrc script [26] by including a line like this:
|
||||||
>
|
>
|
||||||
let g:ycm_min_num_of_chars_for_completion = 1
|
let g:ycm_min_num_of_chars_for_completion = 1
|
||||||
<
|
<
|
||||||
Note that after changing an option in your vimrc script [25] you have to
|
Note that after changing an option in your vimrc script [26] you have to
|
||||||
restart Vim for the changes to take effect.
|
restart Vim for the changes to take effect.
|
||||||
|
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
@ -1709,7 +1903,7 @@ from the 'tagfiles()' Vim function which examines the 'tags' Vim option. See
|
|||||||
|
|
||||||
YCM will re-index your tags files if it detects that they have been modified.
|
YCM will re-index your tags files if it detects that they have been modified.
|
||||||
|
|
||||||
The only supported tag format is the Exuberant Ctags format [35]. The format
|
The only supported tag format is the Exuberant Ctags format [40]. The format
|
||||||
from "plain" ctags is NOT supported. Ctags needs to be called with the '--
|
from "plain" ctags is NOT supported. Ctags needs to be called with the '--
|
||||||
fields=+l' option (that's a lowercase 'L', not a one) because YCM needs the
|
fields=+l' option (that's a lowercase 'L', not a one) because YCM needs the
|
||||||
'language:<lang>' field in the tags output.
|
'language:<lang>' field in the tags output.
|
||||||
@ -2076,7 +2270,7 @@ It's also possible to use a regular expression as a trigger. You have to prefix
|
|||||||
your trigger with 're!' to signify it's a regex trigger. For instance,
|
your trigger with 're!' to signify it's a regex trigger. For instance,
|
||||||
're!\w+\.' would only trigger after the '\w+\.' regex matches.
|
're!\w+\.' would only trigger after the '\w+\.' regex matches.
|
||||||
|
|
||||||
NOTE: The regex syntax is **NOT** Vim's, it's Python's [36].
|
NOTE: The regex syntax is **NOT** Vim's, it's Python's [41].
|
||||||
|
|
||||||
Default: '[see next line]'
|
Default: '[see next line]'
|
||||||
>
|
>
|
||||||
@ -2261,7 +2455,7 @@ produced. See the full installation guide for help.
|
|||||||
I'm trying to use a Homebrew Vim with YCM and I'm getting segfaults ~
|
I'm trying to use a Homebrew Vim with YCM and I'm getting segfaults ~
|
||||||
|
|
||||||
Something (I don't know what) is wrong with the way that Homebrew configures
|
Something (I don't know what) is wrong with the way that Homebrew configures
|
||||||
and builds Vim. I recommend using MacVim [14]. Even if you don't like the
|
and builds Vim. I recommend using MacVim [15]. Even if you don't like the
|
||||||
MacVim GUI, you can use the Vim binary that is inside the MacVim.app package
|
MacVim GUI, you can use the Vim binary that is inside the MacVim.app package
|
||||||
(it's 'MacVim.app/Contents/MacOS/Vim') and get the Vim console experience.
|
(it's 'MacVim.app/Contents/MacOS/Vim') and get the Vim console experience.
|
||||||
|
|
||||||
@ -2271,7 +2465,7 @@ I have a Homebrew Python and/or MacVim; can't compile/SIGABRT when starting ~
|
|||||||
|
|
||||||
You should probably run 'brew rm python; brew install python' to get the latest
|
You should probably run 'brew rm python; brew install python' to get the latest
|
||||||
fixes that should make YCM work with such a configuration. Also rebuild Macvim
|
fixes that should make YCM work with such a configuration. Also rebuild Macvim
|
||||||
then. If you still get problems with this, see issue #18 [37] for suggestions.
|
then. If you still get problems with this, see issue #18 [42] for suggestions.
|
||||||
|
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
*youcompleteme-vim-segfaults-when-i-use-semantic-completer-in-ruby-files*
|
*youcompleteme-vim-segfaults-when-i-use-semantic-completer-in-ruby-files*
|
||||||
@ -2356,15 +2550,15 @@ YCM does not read identifiers from my tags files ~
|
|||||||
|
|
||||||
First, put 'let g:ycm_collect_identifiers_from_tags_files = 1' in your vimrc.
|
First, put 'let g:ycm_collect_identifiers_from_tags_files = 1' in your vimrc.
|
||||||
|
|
||||||
Make sure you are using Exuberant Ctags [38] to produce your tags files since
|
Make sure you are using Exuberant Ctags [43] to produce your tags files since
|
||||||
the only supported tag format is the Exuberant Ctags format [35]. The format
|
the only supported tag format is the Exuberant Ctags format [40]. The format
|
||||||
from "plain" ctags is NOT supported. The output of 'ctags --version' should
|
from "plain" ctags is NOT supported. The output of 'ctags --version' should
|
||||||
list "Exuberant Ctags".
|
list "Exuberant Ctags".
|
||||||
|
|
||||||
Ctags needs to be called with the '--fields=+l' (that's a lowercase 'L', not a
|
Ctags needs to be called with the '--fields=+l' (that's a lowercase 'L', not a
|
||||||
one) option because YCM needs the 'language:<lang>' field in the tags output.
|
one) option because YCM needs the 'language:<lang>' field in the tags output.
|
||||||
|
|
||||||
NOTE: Exuberant Ctags [38] by default sets language tag for '*.h' files as
|
NOTE: Exuberant Ctags [43] by default sets language tag for '*.h' files as
|
||||||
'C++'. If you have C (not C++) project, consider giving parameter '--
|
'C++'. If you have C (not C++) project, consider giving parameter '--
|
||||||
langmap=c:.c.h' to ctags to see tags from '*.h' files.
|
langmap=c:.c.h' to ctags to see tags from '*.h' files.
|
||||||
|
|
||||||
@ -2435,7 +2629,7 @@ and similar, then just update to Vim 7.4.314 (or later) and they'll go away.
|
|||||||
*vim-sub-autoclose*
|
*vim-sub-autoclose*
|
||||||
Nasty bugs happen if I have the 'vim-autoclose' plugin installed ~
|
Nasty bugs happen if I have the 'vim-autoclose' plugin installed ~
|
||||||
|
|
||||||
Use the delimitMate [39] plugin instead. It does the same thing without
|
Use the delimitMate [44] plugin instead. It does the same thing without
|
||||||
conflicting with YCM.
|
conflicting with YCM.
|
||||||
|
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
@ -2443,7 +2637,7 @@ conflicting with YCM.
|
|||||||
Is there some sort of YCM mailing list? I have questions ~
|
Is there some sort of YCM mailing list? I have questions ~
|
||||||
|
|
||||||
If you have questions about the plugin or need help, please use the ycm-users
|
If you have questions about the plugin or need help, please use the ycm-users
|
||||||
[40] mailing list, _don't_ create issues on the tracker. The tracker is for bug
|
[45] mailing list, _don't_ create issues on the tracker. The tracker is for bug
|
||||||
reports and feature requests.
|
reports and feature requests.
|
||||||
|
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
@ -2497,7 +2691,7 @@ mismatch in assumptions causes performance problems since Syntastic code isn't
|
|||||||
optimized for this use case of constant diagnostic refreshing.
|
optimized for this use case of constant diagnostic refreshing.
|
||||||
|
|
||||||
Poor support for this use case also led to crash bugs in Vim caused by
|
Poor support for this use case also led to crash bugs in Vim caused by
|
||||||
Syntastic-Vim interactions (issue #593 [41]) and other problems, like random
|
Syntastic-Vim interactions (issue #593 [46]) and other problems, like random
|
||||||
Vim flickering. Attempts were made to resolve these issues in Syntastic, but
|
Vim flickering. Attempts were made to resolve these issues in Syntastic, but
|
||||||
ultimately some of them failed (for various reasons).
|
ultimately some of them failed (for various reasons).
|
||||||
|
|
||||||
@ -2533,13 +2727,13 @@ paths, prepend '-isystem' to each individual path and append them all to the
|
|||||||
list of flags you return from your 'FlagsForFile' function in your
|
list of flags you return from your 'FlagsForFile' function in your
|
||||||
'.ycm_extra_conf.py' file.
|
'.ycm_extra_conf.py' file.
|
||||||
|
|
||||||
See issue #303 [42] for details.
|
See issue #303 [47] for details.
|
||||||
|
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
*youcompleteme-install-ycm-with-neobundle-43*
|
*youcompleteme-install-ycm-with-neobundle-48*
|
||||||
Install YCM with NeoBundle [43] ~
|
Install YCM with NeoBundle [48] ~
|
||||||
|
|
||||||
NeoBundle [43] can do the compilation for you; just add the following to your
|
NeoBundle [48] can do the compilation for you; just add the following to your
|
||||||
vimrc:
|
vimrc:
|
||||||
>
|
>
|
||||||
NeoBundle 'Valloric/YouCompleteMe', {
|
NeoBundle 'Valloric/YouCompleteMe', {
|
||||||
@ -2557,15 +2751,26 @@ the following to your vimrc:
|
|||||||
>
|
>
|
||||||
let g:neobundle#install_process_timeout = 1500
|
let g:neobundle#install_process_timeout = 1500
|
||||||
<
|
<
|
||||||
|
-------------------------------------------------------------------------------
|
||||||
|
*.tern-sub-project*
|
||||||
|
When I open a JavaScript file, I get an annoying warning about '.tern- ~
|
||||||
|
project' file ~
|
||||||
|
|
||||||
|
Take a look at the instructions for using the JavaScript completer.
|
||||||
|
|
||||||
|
If this is still really annoying, and you have a good reason not to have a
|
||||||
|
'.tern-project' file, create an empty '.tern-config' file in your home
|
||||||
|
directory and YCM will stop complaining.
|
||||||
|
|
||||||
===============================================================================
|
===============================================================================
|
||||||
*youcompleteme-contact*
|
*youcompleteme-contact*
|
||||||
Contact ~
|
Contact ~
|
||||||
|
|
||||||
If you have questions about the plugin or need help, please use the ycm-users
|
If you have questions about the plugin or need help, please use the ycm-users
|
||||||
[40] mailing list.
|
[45] mailing list.
|
||||||
|
|
||||||
If you have bug reports or feature suggestions, please use the issue tracker
|
If you have bug reports or feature suggestions, please use the issue tracker
|
||||||
[44].
|
[49].
|
||||||
|
|
||||||
The latest version of the plugin is available at
|
The latest version of the plugin is available at
|
||||||
http://valloric.github.io/YouCompleteMe/.
|
http://valloric.github.io/YouCompleteMe/.
|
||||||
@ -2576,10 +2781,10 @@ The author's homepage is http://val.markovic.io.
|
|||||||
*youcompleteme-license*
|
*youcompleteme-license*
|
||||||
License ~
|
License ~
|
||||||
|
|
||||||
This software is licensed under the GPL v3 license [45]. © 2015 YouCompleteMe
|
This software is licensed under the GPL v3 license [50]. © 2015 YouCompleteMe
|
||||||
contributors
|
contributors
|
||||||
|
|
||||||
Image: Bitdeli Badge [46]
|
Image: Bitdeli Badge [51]
|
||||||
|
|
||||||
===============================================================================
|
===============================================================================
|
||||||
*youcompleteme-references*
|
*youcompleteme-references*
|
||||||
@ -2591,47 +2796,51 @@ References ~
|
|||||||
[4] https://ci.appveyor.com/api/projects/status/ag9uqwi8s6btwjd8/branch/master?svg=true
|
[4] https://ci.appveyor.com/api/projects/status/ag9uqwi8s6btwjd8/branch/master?svg=true
|
||||||
[5] http://clang.llvm.org/
|
[5] http://clang.llvm.org/
|
||||||
[6] https://github.com/davidhalter/jedi
|
[6] https://github.com/davidhalter/jedi
|
||||||
[7] https://github.com/nosami/OmniSharpServer
|
[7] https://github.com/OmniSharp/omnisharp-server
|
||||||
[8] https://github.com/nsf/gocode
|
[8] https://github.com/nsf/gocode
|
||||||
[9] https://github.com/Microsoft/TypeScript/tree/master/src/server
|
[9] https://github.com/Microsoft/TypeScript/tree/master/src/server
|
||||||
[10] http://i.imgur.com/0OP4ood.gif
|
[10] http://ternjs.net
|
||||||
[11] http://en.wikipedia.org/wiki/Subsequence
|
[11] http://i.imgur.com/0OP4ood.gif
|
||||||
[12] https://github.com/scrooloose/syntastic
|
[12] https://en.wikipedia.org/wiki/Subsequence
|
||||||
[13] https://github.com/SirVer/ultisnips/blob/master/doc/UltiSnips.txt
|
[13] https://github.com/scrooloose/syntastic
|
||||||
[14] https://github.com/macvim-dev/macvim/releases
|
[14] https://github.com/SirVer/ultisnips/blob/master/doc/UltiSnips.txt
|
||||||
[15] https://github.com/VundleVim/Vundle.vim#about
|
[15] https://github.com/macvim-dev/macvim/releases
|
||||||
[16] http://mxcl.github.com/homebrew/
|
[16] https://github.com/VundleVim/Vundle.vim#about
|
||||||
[17] http://www.cmake.org/cmake/resources/software.html
|
[17] http://brew.sh
|
||||||
[18] https://docs.npmjs.com/getting-started/installing-node
|
[18] https://cmake.org/download/
|
||||||
[19] https://github.com/Valloric/YouCompleteMe/wiki/Building-Vim-from-source
|
[19] https://docs.npmjs.com/getting-started/installing-node
|
||||||
[20] https://bintray.com/veegee/generic/vim_x64
|
[20] https://github.com/Valloric/YouCompleteMe/wiki/Building-Vim-from-source
|
||||||
[21] https://www.python.org/downloads/windows/
|
[21] https://bintray.com/veegee/generic/vim_x64
|
||||||
[22] https://www.visualstudio.com/products/free-developer-offers-vs.aspx
|
[22] https://www.python.org/downloads/windows/
|
||||||
[23] http://www.7-zip.org/download.html
|
[23] https://www.visualstudio.com/products/free-developer-offers-vs.aspx
|
||||||
[24] https://github.com/tpope/vim-pathogen#pathogenvim
|
[24] http://www.7-zip.org/download.html
|
||||||
[25] http://vimhelp.appspot.com/starting.txt.html#vimrc
|
[25] https://github.com/tpope/vim-pathogen#pathogenvim
|
||||||
[26] http://llvm.org/releases/download.html
|
[26] http://vimhelp.appspot.com/starting.txt.html#vimrc
|
||||||
[27] https://github.com/Valloric/YouCompleteMe#options
|
[27] http://llvm.org/releases/download.html
|
||||||
[28] https://github.com/Valloric/ycmd/blob/master/cpp/ycm/.ycm_extra_conf.py
|
[28] https://github.com/Valloric/YouCompleteMe#options
|
||||||
[29] http://clang.llvm.org/docs/JSONCompilationDatabase.html
|
[29] https://github.com/Valloric/ycmd/blob/master/cpp/ycm/.ycm_extra_conf.py
|
||||||
[30] https://github.com/rizsotto/Bear
|
[30] http://clang.llvm.org/docs/JSONCompilationDatabase.html
|
||||||
[31] https://github.com/rdnetto/YCM-Generator
|
[31] https://github.com/rizsotto/Bear
|
||||||
[32] http://eclim.org/
|
[32] https://github.com/rdnetto/YCM-Generator
|
||||||
[33] https://github.com/Valloric/ycmd/blob/master/ycmd/completers/completer.py
|
[33] http://ternjs.net/doc/manual.html#configuration
|
||||||
[34] https://github.com/Valloric/ListToggle
|
[34] http://ternjs.net/doc/manual.html#server
|
||||||
[35] http://ctags.sourceforge.net/FORMAT
|
[35] http://ternjs.net/doc/manual.html#plugins
|
||||||
[36] https://docs.python.org/2/library/re.html#regular-expression-syntax
|
[36] http://eclim.org/
|
||||||
[37] https://github.com/Valloric/YouCompleteMe/issues/18
|
[37] https://github.com/Valloric/ycmd/blob/master/ycmd/completers/completer.py
|
||||||
[38] http://ctags.sourceforge.net/
|
[38] https://github.com/Valloric/ListToggle
|
||||||
[39] https://github.com/Raimondi/delimitMate
|
[39] https://github.com/itchyny/lightline.vim
|
||||||
[40] https://groups.google.com/forum/?hl=en#!forum/ycm-users
|
[40] http://ctags.sourceforge.net/FORMAT
|
||||||
[41] https://github.com/Valloric/YouCompleteMe/issues/593
|
[41] https://docs.python.org/2/library/re.html#regular-expression-syntax
|
||||||
[42] https://github.com/Valloric/YouCompleteMe/issues/303
|
[42] https://github.com/Valloric/YouCompleteMe/issues/18
|
||||||
[43] https://github.com/Shougo/neobundle.vim
|
[43] http://ctags.sourceforge.net/
|
||||||
[44] https://github.com/Valloric/YouCompleteMe/issues?state=open
|
[44] https://github.com/Raimondi/delimitMate
|
||||||
[45] http://www.gnu.org/copyleft/gpl.html
|
[45] https://groups.google.com/forum/?hl=en#!forum/ycm-users
|
||||||
[46] https://bitdeli.com/free
|
[46] https://github.com/Valloric/YouCompleteMe/issues/593
|
||||||
[47] https://d2weczhvl823v0.cloudfront.net/Valloric/youcompleteme/trend.png
|
[47] https://github.com/Valloric/YouCompleteMe/issues/303
|
||||||
[48] https://github.com/itchyny/lightline.vim
|
[48] https://github.com/Shougo/neobundle.vim
|
||||||
|
[49] https://github.com/Valloric/YouCompleteMe/issues?state=open
|
||||||
|
[50] http://www.gnu.org/copyleft/gpl.html
|
||||||
|
[51] https://bitdeli.com/free
|
||||||
|
[52] https://d2weczhvl823v0.cloudfront.net/Valloric/youcompleteme/trend.png
|
||||||
|
|
||||||
vim: ft=help
|
vim: ft=help
|
||||||
|
2
third_party/ycmd
vendored
2
third_party/ycmd
vendored
@ -1 +1 @@
|
|||||||
Subproject commit 22c8670c93b4ae9930c9cdf31ad9995c7fd057bd
|
Subproject commit 8ec83866948b24591f62525f027b7aa4aac3e1ad
|
Loading…
Reference in New Issue
Block a user