From d555e44219f14477fbd066d0633aa5ab5912a509 Mon Sep 17 00:00:00 2001 From: Jan Edmund Lazo Date: Thu, 27 Jun 2019 07:46:33 -0400 Subject: vim-patch:8.0.1120: :tm means :tmap instead of :tmenu Problem: :tm means :tmap instead of :tmenu. (Taro Muraoka) Solution: Move the new entry below the old entry. (closes vim/vim#2102) https://github.com/vim/vim/commit/63c4e8a1986796094e6f15b893f2deccdf482617 --- runtime/doc/map.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'runtime') diff --git a/runtime/doc/map.txt b/runtime/doc/map.txt index eac42df791..74c9a2a003 100644 --- a/runtime/doc/map.txt +++ b/runtime/doc/map.txt @@ -438,6 +438,7 @@ When listing mappings the characters in the first two columns are: i Insert l ":lmap" mappings for Insert, Command-line and Lang-Arg c Command-line + t Terminal-Job Just before the {rhs} a special character can appear: * indicates that it is not remappable @@ -536,9 +537,9 @@ scenario: > :imap foo :set encoding=utf-8 The mapping for is defined with the latin1 encoding, resulting in a 0xc3 -byte. If you type the character á (0xe1 ) in UTF-8 encoding this is the +byte. If you type the character á (0xe1 ) in UTF-8 encoding this is the two bytes 0xc3 0xa1. You don't want the 0xc3 byte to be mapped then or -otherwise it would be impossible to type the á character. +otherwise it would be impossible to type the á character. ** *mapleader* To define a mapping which uses the "mapleader" variable, the special string -- cgit