We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f5d160e commit b84b720Copy full SHA for b84b720
doc/ledger.txt
@@ -304,9 +304,9 @@ behaviour of the ledger filetype.
304
305
let g:ledger_commodity_sep = ''
306
307
-* Flag that disable the spelling of the amount:
+* Flag that enable the spelling of the amount:
308
309
- let g:ledger_commodity_spell = 0
+ let g:ledger_commodity_spell = 1
310
311
* Format of transaction date:
312
syntax/ledger.vim
@@ -22,7 +22,7 @@ if s:fb == 1
22
endif
23
24
let s:ledgerAmount_contains = ''
25
-if get(g:, 'ledger_commodity_spell', 1) == 0
+if get(g:, 'ledger_commodity_spell', 0) == 0
26
let s:ledgerAmount_contains .= '@NoSpell'
27
28
0 commit comments