Skip to content

Commit

Permalink
Name changes
Browse files Browse the repository at this point in the history
  • Loading branch information
johngodlee committed Jun 8, 2019
1 parent 6c7fbc1 commit 51990db
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugin/notational_fzf.vim
Expand Up @@ -44,7 +44,7 @@ let s:wrap_text = get(g:, 'nv_wrap_preview_text', 0) ? 'wrap' : ''
let s:show_preview = get(g:, 'nv_show_preview', 1) ? '' : 'hidden'

" Respect .*ignore files unless user has chosen not to
let s:ignore_files = get(g:, 'nv_ignore_files', 1) ? '' : '-u'
let s:use_ignore_files = get(g:, 'nv_use_ignore_files', 1) ? '' : '-u'

" How wide to make preview window. 72 characters is default.
let s:preview_width = exists('g:nv_preview_width') ? string(float2nr(str2float(g:nv_preview_width) / 100.0 * &columns)) : ''
Expand Down Expand Up @@ -199,7 +199,7 @@ command! -nargs=* -bang NV
\ 'command',
\ 'rg',
\ '--follow',
\ s:ignore_files,
\ s:use_ignore_files,
\ '--smart-case',
\ '--hidden',
\ '--line-number',
Expand Down

0 comments on commit 51990db

Please sign in to comment.