当我打开quickfix窗口时,我想禁用以下映射。
map <F5> :ZoomWin<cr>
答案 0 :(得分:6)
您的意思是quickfix吗?如果是这样,有三种方式:
使用<expr>
映射:
nnoremap <expr> <F5> (&buftype is# "quickfix" ? "" : ":\<C-u>ZoomWin\n")
使用BufEnter事件设置/恢复映射:
augroup F5Map
autocmd! BufEnter * :if &buftype is# 'quickfix' | nunmap <F5> | else | nnoremap <F5> :<C-u>ZoomWin<CR> | endif
augroup END
仅在需要的缓冲区本地创建映射:
augroup F5Map
autocmd! BufEnter * :if &buftype isnot# 'quickfix' && empty(maparg('<F5>')) | nnoremap <buffer> <F5> :<C-u>ZoomWin<CR> | endif
augroup END
更新:要在任何已打开的窗口包含quickfix缓冲区时禁用映射,请使用以下命令:
nnoremap <expr> <F5> (&buftype is# "quickfix" || empty(filter(tabpagebuflist(), 'getbufvar(v:val, "&buftype") is# "quickfix"')) ? ":\<C-u>ZoomWin\n" : "")