#109 Use norm! instead of norm to solve remapping issues.

This commit is contained in:
w0rp 2016-10-16 16:09:01 +01:00
parent cbc419d51f
commit b07161fe38
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ function! ale#cursor#TruncatedEcho(message) abort
try
" Echo the message truncated to fit without creating a prompt.
setlocal shortmess+=T
exec "norm :echomsg message\n"
exec "norm! :echomsg message\n"
finally
call setbufvar('%', '&shortmess', l:shortmess_options)
endtry