dahu / vim-fanfingtastic

Find a char across lines
113 stars 5 forks source link

Repeat for change command no longer works #18

Closed lervag closed 9 years ago

lervag commented 9 years ago

When using the change command c with fanfingtastic the repeat command stops working. Example, consider following file:

Test
Testing

On first letter in file, do ctsFa<esc> to change the word to "Fast". Then go to next line and repeat with ., which gives the following result for me:

Fast
aesting

The above example was run with the minimal vimrc:

set nocompatible

let &rtp = '~/.vim/bundle/vim-fanfingtastic,' . &rtp

filetype plugin indent on
syntax enable

I use vim version 7.4.537 on Arch Linux.

dahu commented 9 years ago

The repeat feature depends on tpope's vim-repeat. I have successfully tested with vim 7.4.430

lervag commented 9 years ago

Yes, of course. My mistake!