Compare commits

..

1 Commits
5.2.4 ... 5.2.5

Author SHA1 Message Date
Phil Runninger
3b1a850b85 Use :mode instead of :redraw! when updating menu. (#1016)
* Use :mode instead of :redraw! when updating screen.

In neovim, it will actually clear the whole screen, whereas, redraw!
does not.

* Update version number in change log.
2019-07-07 03:19:17 -04:00
2 changed files with 2 additions and 1 deletions

View File

@@ -1,6 +1,7 @@
# Change Log # Change Log
#### 5.2... #### 5.2...
- **.5**: Use `:mode` instead of `:redraw!` when updating menu. (PhilRunninger) #1016
- **.4**: When searching for root line num, stop at end of file. (PhilRunninger) #1015 - **.4**: When searching for root line num, stop at end of file. (PhilRunninger) #1015
- **.3**: Fix `<CR>` key map on the bookmark (lkebin) #1014 - **.3**: Fix `<CR>` key map on the bookmark (lkebin) #1014
- **.2**: Make Enter work on the `.. ( up a dir )` line (PhilRunninger) #1013 - **.2**: Make Enter work on the `.. ( up a dir )` line (PhilRunninger) #1013

View File

@@ -31,7 +31,7 @@ function! s:MenuController.showMenu()
let l:done = 0 let l:done = 0
while !l:done while !l:done
redraw! mode
call self._echoPrompt() call self._echoPrompt()
let l:key = nr2char(getchar()) let l:key = nr2char(getchar())