diff options
| author | Bram Moolenaar <Bram@vim.org> | 2016-07-24 16:17:59 +0200 |
|---|---|---|
| committer | Bram Moolenaar <Bram@vim.org> | 2016-07-24 16:17:59 +0200 |
| commit | 73ac0c4281a3606651604a3cbcc334bfb3859a87 (patch) | |
| tree | a5a70546506fcc3cfc91e5b8e6794af80606be42 /src/buffer.c | |
| parent | 6f1d9a096bf22d50c727dca73abbfb8e3ff55176 (diff) | |
| download | vim-git-73ac0c4281a3606651604a3cbcc334bfb3859a87.tar.gz | |
patch 7.4.2099v7.4.2099
Problem: When a keymap is active only "(lang)" is displayed. (Ilya
Dogolazky)
Solution: Show the keymap name. (Dmitri Vereshchagin, closes #933)
Diffstat (limited to 'src/buffer.c')
| -rw-r--r-- | src/buffer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buffer.c b/src/buffer.c index 99d23ec5d..8590e2a2e 100644 --- a/src/buffer.c +++ b/src/buffer.c @@ -4114,7 +4114,7 @@ build_stl_str_hl( case STL_KEYMAP: fillable = FALSE; - if (get_keymap_str(wp, tmp, TMPLEN)) + if (get_keymap_str(wp, (char_u *)"<%s>", tmp, TMPLEN)) str = tmp; break; case STL_PAGENUM: |
