This plugin provides f/t/F/T mappings that can be customized by your setting.
You can enable this plugin via following mappings.
nmap ; <Plug>(eft-repeat)
xmap ; <Plug>(eft-repeat)
omap ; <Plug>(eft-repeat)
nmap f <Plug>(eft-f)
xmap f <Plug>(eft-f)
omap f <Plug>(eft-f)
nmap F <Plug>(eft-F)
xmap F <Plug>(eft-F)
omap F <Plug>(eft-F)
nmap t <Plug>(eft-t)
xmap t <Plug>(eft-t)
omap t <Plug>(eft-t)
nmap T <Plug>(eft-T)
xmap T <Plug>(eft-T)
omap T <Plug>(eft-T)
" Disable highlight
let g:eft_highlight = {}
" Custom highlight
let g:eft_highlight = {
\ '1': {
\ 'highlight': 'EftChar',
\ 'allow_space': v:true,
\ 'allow_operator': v:true,
\ },
\ '2': {
\ 'highlight': 'EftSubChar',
\ 'allow_space': v:false,
\ 'allow_operator': v:false,
\ },
\ 'n': {
\ 'highlight': 'EftSubChar',
\ 'allow_space': v:false,
\ 'allow_operator': v:false,
\ }
\ }
" You can pick your favorite strategies.
let g:eft_index_function = {
\ 'head': function('eft#index#head'),
\ 'tail': function('eft#index#tail'),
\ 'space': function('eft#index#space'),
\ 'camel': function('eft#index#camel'),
\ 'symbol': function('eft#index#symbol'),
\ }
" You can use the below function like native `f`
let g:eft_index_function = {
\ 'all': { -> v:true },
\ }
NOTE: This demo uses Ff
, fm
fc
with this plugin's default configuration.