let s:nohlslash = 0 function! s:setup_nohlslash() let s:nohlslash = !s:nohlslash endfunction nnoremap a :call setup_nohlslash() augroup nohlslash autocmd! autocmd CmdwinLeave * \ if s:nohlslash | \ echom 'test' \ nohlsearch \ endif augroup END