Skip to content

v1.2.1

Compare
Choose a tag to compare
@haya14busa haya14busa released this 28 Jun 12:25
· 95 commits to master since this release

1.2.1 2015-06-26

  1. Add |incsearch-config-keymap| option to |incsearch-config|
  2. Some refactoring

Example

function! s:config() abort
  return {
  \   'keymap': {
  \      "\<Tab>": {
  \        'key': '<Over>(buffer-complete)',
  \        'noremap': 1
  \      },
  \      "\<C-j>": "\<CR>"
  \   }
  \ }
endfunction

noremap <expr> z/ incsearch#go(<SID>config())