-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
A setting to disable default mappings #20
Comments
There should already be a way to handle this. If you create your own bindings to the plugin's functions first, the plugin won't add its default ones. It only adds them if it finds that there are no existing bindings. There are two commands in two modes for a total of four bindings that get created in none others exist. The defaults are: imap <buffer> <Leader>f <Plug>AddVimFootnote
nmap <buffer> <Leader>f <Plug>AddVimFootnote
imap <buffer> <Leader>r <Plug>ReturnFromFootnote
nmap <buffer> <Leader>r <Plug>ReturnFromFootnote If you map those functions to your own keys (you can use anything it doesn't have to involve the leader at all) you should get the effect you want. If you don't want a binding at all bind it to something impossible. I agree that is less than ideal and a documented way to suppress this (particularly the insert mode bindings) might be useful. I'd be happy to review and merge any contribution that took this on. |
Also if you could review #17 that might be useful. I proposed some changes particularly to the insert maps and simplifying to have fewer bindings by default, but we never really agreed on whether my proposal was an improvement. Feedback would be great. |
I can fully understand the OP concern, and me too, I want to decide and control for my self which bindings this plugin uses. In particular the "precious" Leader mappings.
Yes, this does work in fact seems to work, in some cases. I tried 2 different cases:
Say you already have other plans for Leader f and Leader r. This change works:
Another example with a simple letter, say "g". Just as illustration example. A bit silly, i know, and besides "gn" and "gb" have other (meanings in normal mode:
Another interesting variant is making use of "]" and "[". This is what the very wise Tim Pope does, with the Vim unimpaired mappings, https://github.com/tpope/vim-unimpaired. I checked and, for ex. the letter "r" is still "free". So this could make a sensible solution without conflict with other plugins:
This variant is interesting. Very low cognitive overload. "]" do something, go forward etc, and "[" do the opposint, go back etc. One could even use it to do the same mapping for visual mode. A possible visual mapping for this plugin, markdownfootnotes, if this was supported:
Just a small additional question about the "noremap" thing. Pardon my vim ignorance. If I instead do:
this doesnt seem work anymore. The plugin will add its default mappings, and mines won't work. Why ? I've always been told that it's "best" to choose the "noremap" thing.
It' doesnt seem to work. Say for example I want to "save" and not "waste" Leader mappings. I choose to "reserve" \n as a prefix to this plugin.
It doesnt seems to work. It keeps getting only the first note |
@alerque How would I go about to simply disable the insert mappings? Could this be done without remapping |
No, I don't think that can be done right now. It should be possible (hence this issue being open!). |
I currently work around it by imap <SID>(DisableAddVimFootnote) <Plug>AddVimFootnote
imap <SID>(DisableReturnFromFootnote) <Plug>ReturnFromFootnote
nmap <SID>(DisableReturnFromFootnote) <Plug>ReturnFromFootnote
augroup epnMarkdownFootnote
autocmd!
autocmd FileType markdown inoreabbrev afn <c-o>:<c-u>exe "normal \<Plug>AddVimFootnote"<cr>
augroup end
|
Here's another workaround. Remap it to imap <buffer> <F13> <Plug>AddVimFootnote
imap <buffer> <F14> <Plug>ReturnFromFootnote I would prefer a builtin feature to simply disable the insert mode mapping, but this seems to do the trick. |
Please note that the imap mappings leads to the following unintended and highly undesirable behaviour: |
By default, this plugin hijacks
<leader>f
and<leader>r
in normal mode and insert mode. The insert mode mapping makes this plugin unusable for anyone who has for instance has<leader>
mapped to<space>
.There should definitely be a setting for disabling default mappings.
The text was updated successfully, but these errors were encountered: