From d7860c34d24d09c3c1c27ffa5382e729628c7da1 Mon Sep 17 00:00:00 2001 From: Lucas Vieira Date: Tue, 31 Jan 2017 13:58:17 -0200 Subject: [PATCH] Lowercase in mappings examples --- README.md | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 6c979ca976..b5542fb569 100644 --- a/README.md +++ b/README.md @@ -137,43 +137,43 @@ current buffer. You can also open the definition/declaration, in a new vertical, horizontal, or tab, for the word under your cursor: ```vim -au FileType go nmap ds (go-def-split) -au FileType go nmap dv (go-def-vertical) -au FileType go nmap dt (go-def-tab) +au FileType go nmap ds (go-def-split) +au FileType go nmap dv (go-def-vertical) +au FileType go nmap dt (go-def-tab) ``` Open the relevant Godoc for the word under the cursor with `gd` or open it vertically with `gv` ```vim -au FileType go nmap gd (go-doc) -au FileType go nmap gv (go-doc-vertical) +au FileType go nmap gd (go-doc) +au FileType go nmap gv (go-doc-vertical) ``` Or open the Godoc in browser ```vim -au FileType go nmap gb (go-doc-browser) +au FileType go nmap gb (go-doc-browser) ``` Show a list of interfaces which is implemented by the type under your cursor with `s` ```vim -au FileType go nmap s (go-implements) +au FileType go nmap s (go-implements) ``` Show type info for the word under your cursor with `i` (useful if you have disabled auto showing type info via `g:go_auto_type_info`) ```vim -au FileType go nmap i (go-info) +au FileType go nmap i (go-info) ``` Rename the identifier under the cursor to a new name ```vim -au FileType go nmap e (go-rename) +au FileType go nmap e (go-rename) ``` More `` mappings can be seen with `:he go-mappings`. Also these are just @@ -245,8 +245,8 @@ Run `:GoRun` in a new tab, horizontal split or vertical split terminal ```vim au FileType go nmap rt (go-run-tab) -au FileType go nmap rs (go-run-split) -au FileType go nmap rv (go-run-vertical) +au FileType go nmap rs (go-run-split) +au FileType go nmap rv (go-run-vertical) ``` By default new terminals are opened in a vertical split. To change it