From 93a046a78f0ab20af54812f28784d555fda2d38d Mon Sep 17 00:00:00 2001 From: w0rp Date: Mon, 23 Apr 2018 21:18:58 +0100 Subject: [PATCH] #1236 Explain how to use Vim jumps --- doc/ale.txt | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/doc/ale.txt b/doc/ale.txt index 9692708..d5e6958 100644 --- a/doc/ale.txt +++ b/doc/ale.txt @@ -1768,6 +1768,9 @@ ALEFindReferences *ALEFindReferences* Enter key (``) can be used to jump to a referencing location, or the `t` key can be used to jump to the location in a new tab. + You can jump back to the position you were at before going to a reference of + something with jump motions like CTRL-O. See |jump-motions|. + A plug mapping `(ale_find_references)` is defined for this command. ALEFix *ALEFix* @@ -1790,6 +1793,9 @@ ALEGoToDefinition *ALEGoToDefinition* linters for the buffer. ALE will jump to a definition if an LSP server provides a location to jump to. Otherwise, ALE will do nothing. + You can jump back to the position you were at before going to the definition + of something with jump motions like CTRL-O. See |jump-motions|. + A plug mapping `(ale_go_to_definition)` is defined for this command.