diff options
author | w0rp <devw0rp@gmail.com> | 2017-11-26 23:12:13 +0000 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2017-11-26 23:12:13 +0000 |
commit | f311a46f794d303b25a71ab99299b78bd031b4dd (patch) | |
tree | 5393faadfa8da8f9b1b1332459838b49bd016931 /README.md | |
parent | 17f93b16ab74b5f05ed7922c8a5aebc598fcc199 (diff) | |
download | ale-f311a46f794d303b25a71ab99299b78bd031b4dd.zip |
Add go to definition to the README
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 13 |
1 files changed, 11 insertions, 2 deletions
@@ -17,8 +17,7 @@ back to a filesystem. In other words, this plugin allows you to lint while you type. In addition to linting support, ALE offers some support for fixing code with -formatting tools, and completion via Language Server Protocol servers, or -servers with similar enough protocols, like `tsserver`. +formatting tools, and some Language Server Protocol and `tsserver` features. ## Table of Contents @@ -27,6 +26,7 @@ servers with similar enough protocols, like `tsserver`. 1. [Linting](#usage-linting) 2. [Fixing](#usage-fixing) 3. [Completion](#usage-completion) + 4. [Go To Definition](#usage-go-to-definition) 3. [Installation](#installation) 1. [Installation with Vim package management](#standard-installation) 2. [Installation with Pathogen](#installation-with-pathogen) @@ -223,6 +223,15 @@ let g:ale_completion_enabled = 1 See `:help ale-completion` for more information. +<a name="usage-go-to-definition"></a> + +### 2.iv Go To Definition + +ALE supports jumping to the definition of words under your cursor with the +`:ALEGoToDefinition` command using any enabled LSP linters and `tsserver`. + +See `:help ale-go-to-definition` for more information. + <a name="installation"></a> ## 3. Installation |