Skip to content

Commit

Permalink
neovim: prevent completion of amounts
Browse files Browse the repository at this point in the history
  • Loading branch information
paretje committed Nov 24, 2016
1 parent f37667a commit e8f91a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .vimrc
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ let g:deoplete#member#prefix_patterns = {}
let g:deoplete#member#prefix_patterns['markdown.pandoc'] = ':'
let g:deoplete#member#prefix_patterns['ledger'] = ':'
let g:deoplete#keyword_patterns = {}
let g:deoplete#keyword_patterns.ledger = "[a-zA-Z][a-zA-Z.' ]*[a-zA-Z.']"
let g:deoplete#keyword_patterns.ledger = "[a-zA-Z](?!.* )[a-zA-Z.' ]*[a-zA-Z.']"

" tagbar options
let g:tagbar_ctags_bin = 'ctags'
Expand Down

0 comments on commit e8f91a5

Please sign in to comment.