From 98895eb1cfb231846537c1d2cf7f8b5e804fdecf Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Wed, 10 Aug 2005 21:29:58 +0000 Subject: [PATCH] *** empty log message *** --- ledger.vim | 1 + 1 file changed, 1 insertion(+) diff --git a/ledger.vim b/ledger.vim index 36427528..df63feb8 100644 --- a/ledger.vim +++ b/ledger.vim @@ -24,6 +24,7 @@ highlight default link transDate Question " folding: how to represent a transaction in one line. function! MyFoldText() + let line = strpart(getline(v:foldstart), 0, 65) " get the amount at the end of the second line let line2 = getline(v:foldstart+1) let pos = match(line2, "[0-9.]*$")