aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNathan Grigg2015-04-15 14:08:57 -0700
committerNathan Grigg2015-04-15 14:08:57 -0700
commitf4c6ce93598bcc1789a206b899be35b2b7a5194d (patch)
tree98b4ce572e19e568bc03d2019108a416c5c136bd
parent927ac097e93f897727f79381e5ce33c9d99d1f64 (diff)
downloadvim-beancount-f4c6ce93598bcc1789a206b899be35b2b7a5194d.tar.gz
Remove errant debug lines
-rw-r--r--indent/beancount.vim2
1 files changed, 0 insertions, 2 deletions
diff --git a/indent/beancount.vim b/indent/beancount.vim
index da8fed2..686cbdc 100644
--- a/indent/beancount.vim
+++ b/indent/beancount.vim
@@ -13,8 +13,6 @@ function GetBeancountIndent(line_num)
let this_line = getline(a:line_num)
let prev_line = getline(a:line_num - 1)
" This is a new directive or previous line is blank.
- echom this_line
- echom prev_line
if this_line =~ '\v^\s*\d{4}-\d{2}-\d{2}' || prev_line =~ '^\s*$'
return 0
endif