You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I remap increment/decrement and use C-a for select all. The addition of integration with other increment plugins in a418667 breaks user remapping of SpeedDating commands.
" .vimrc
let g:speeddating_no_mappings = 1
" .vim/plugin/speeddating-david.vim
if exists("g:loaded_speeddating") && g:loaded_speeddating
nmap <C-x><C-s> <Plug>SpeedDatingUp
nmap <C-x><C-x> <Plug>SpeedDatingDown
endif
:Verbose nmap <c-x>
n <C-X><C-X> <Plug>SpeedDatingDown
Last set from ~/.vim/after/plugin/speeddating-david.vim line 6
n <C-X><C-S> <Plug>SpeedDatingUp
Last set from ~/.vim/after/plugin/speeddating-david.vim line 5
Inserting a 0, leaving insert mode, executing <C-X><C-X> does not increment the 0. Instead, it selects some portion of the buffer.
I remap increment/decrement and use
C-a
for select all. The addition of integration with other increment plugins in a418667 breaks user remapping of SpeedDating commands.Inserting a 0, leaving insert mode, executing
<C-X><C-X>
does not increment the 0. Instead, it selects some portion of the buffer.The SpeedDatingFallback definition is assuming that anything mapped to C-a or C-x is for inc/decrement. But for me it's not:
I'd assume the same is true for users of mswin.vim too.
The text was updated successfully, but these errors were encountered: