takac / vim-hardtime

Plugin to help you stop repeating the basic movement keys
MIT License
818 stars 30 forks source link

Doesn't work for CamelCaseMotion motions mapped to Ctrl-E/B/W keys #38

Open sergei-dyshel opened 8 years ago

sergei-dyshel commented 8 years ago

I'm using CamelCaseMotion with the following config:

NeoBundle 'bkad/CamelCaseMotion'
map <C-W> <Plug>CamelCaseMotion_w
map <C-B> <Plug>CamelCaseMotion_b
map <C-E> <Plug>CamelCaseMotion_e

NeoBundle 'takac/vim-hardtime'
let g:hardtime_default_on = 1
let g:list_of_normal_keys = ["w", "b", "e", "W", "B", "E",
      \ "<c-w>", "<c-b>", "<c-e>", "gj", "gk", "h", "j", "k", "l"]

For some reason specifically keys <C-e/b/w> do nothing when I press them while others work OK. Without vim-hardtime C-* keys work OK.

srghma commented 7 years ago

Have this issue too