taskwiki
taskwiki copied to clipboard
taskwiki overwrites my maplocalleader
In taskwiki.vim
, my maplocalleader
setting is overwritten (unless I specifically opt out by setting g:taskwiki_suppress_mappings
). I do not think it is good practice to overwrite the user's maplocalleader
setting. This is a global setting that the user would typically set in their .vimrc
file.
Current Behavior
If the g:taskwiki_maplocalleader
variable is set, then
let maplocalleader = g:taskwiki_maplocalleader
is invoked.
If the g:taskwiki_maplocalleader
variable is not set, then
let maplocalleader = g:mapleader.'t'
or
let maplocalleader = '\t'
is invoked.
Desired Behavior
It should be possible to define the same mappings without overwriting the user's maplocalleader
setting.
I also had this problem. It was hard to track down, honestly…