From b07161fe387f5cf91b1ca3c3921e4af58acccec8 Mon Sep 17 00:00:00 2001 From: w0rp Date: Sun, 16 Oct 2016 16:09:01 +0100 Subject: [PATCH] #109 Use norm! instead of norm to solve remapping issues. --- autoload/ale/cursor.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload/ale/cursor.vim b/autoload/ale/cursor.vim index dfe886f..a20212c 100644 --- a/autoload/ale/cursor.vim +++ b/autoload/ale/cursor.vim @@ -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