Open
Description
Hi, thank you for the great plugin. I use it very conveniently.
But I don't want to check if the prefix overrides other commands.
This is because I disable popup and use the prefix set in gopher_map in the prefix of another plugin command.
So how about adding the following options?
let g:gopher_map = {
\ '_check_map': 0,
\ }
And, ftplugin/go.vim.
let s:is_check = g:gopher_map['_check_map']
let s:has_norm = s:is_check ? mapcheck(g:gopher_map['_nmap_prefix'], 'n') isnot# '' : 0
let s:has_ins = s:is_check ? mapcheck(g:gopher_map['_imap_prefix'], 'i') isnot# '' : 0
Thanks.
Activity