Add support for finding references using LSP servers or tsserver

This commit is contained in:
w0rp
2018-04-22 19:49:24 +01:00
parent 5a365e7926
commit 286abd12d3
8 changed files with 438 additions and 0 deletions

View File

@@ -27,6 +27,7 @@ formatting tools, and some Language Server Protocol and `tsserver` features.
2. [Fixing](#usage-fixing)
3. [Completion](#usage-completion)
4. [Go To Definition](#usage-go-to-definition)
5. [Find References](#usage-find-references)
3. [Installation](#installation)
1. [Installation with Vim package management](#standard-installation)
2. [Installation with Pathogen](#installation-with-pathogen)
@@ -240,6 +241,15 @@ ALE supports jumping to the definition of words under your cursor with the
See `:help ale-go-to-definition` for more information.
<a name="usage-find-references"></a>
### 2.v Find References
ALE supports finding references for words under your cursor with the
`:ALEFindReferences` command using any enabled LSP linters and `tsserver`.
See `:help ale-find-references` for more information.
<a name="installation"></a>
## 3. Installation