diff options
author | Johann Klähn <kljohann@gmail.com> | 2009-06-29 16:37:05 +0200 |
---|---|---|
committer | Johann Klähn <kljohann@gmail.com> | 2009-06-29 16:41:36 +0200 |
commit | 2aa9f5115cde5db8b98af45eb0fedfa4955ce6a0 (patch) | |
tree | e4db633ce8316340e6a65a0b5c35d36870a31694 /contrib | |
parent | d680df87124acdc1f7c122e20870de24f64c6a1e (diff) | |
download | fork-ledger-2aa9f5115cde5db8b98af45eb0fedfa4955ce6a0.tar.gz fork-ledger-2aa9f5115cde5db8b98af45eb0fedfa4955ce6a0.tar.bz2 fork-ledger-2aa9f5115cde5db8b98af45eb0fedfa4955ce6a0.zip |
vim. remove old completion by keyword
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/vim/ftplugin/ledger.vim | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/contrib/vim/ftplugin/ledger.vim b/contrib/vim/ftplugin/ledger.vim index 05a5d6d7..d75a6869 100644 --- a/contrib/vim/ftplugin/ledger.vim +++ b/contrib/vim/ftplugin/ledger.vim @@ -12,7 +12,7 @@ let b:did_ftplugin = 1 let b:undo_ftplugin = "setlocal ". \ "foldmethod< foldtext< ". - \ "include< comments< iskeyword< omnifunc< " + \ "include< comments< omnifunc< " " don't fill fold lines --> cleaner look setl fillchars="fold: " @@ -20,10 +20,6 @@ setl foldtext=LedgerFoldText() setl foldmethod=syntax setl include=^!include setl comments=b:; -" so you can use C-X C-N completion on accounts -" FIXME: Does not work with something like: -" Assets:Accountname with Spaces -setl iskeyword+=: setl omnifunc=LedgerComplete " You can set a maximal number of columns the fold text (excluding amount) |