@@ -31,7 +31,7 @@ Tips and useful commands
31
31
32
32
* Try account-completion (as explained below)
33
33
34
- * `:call LedgerSetDate(line ('.'), "auxiliary")`
34
+ * `:call ledger#transaction_date_set ('.'), "auxiliary")`
35
35
36
36
will set today's date as the auxiliary date of the current transaction. You
37
37
can use also "primary" or "unshift" in place of "auxiliary". When you pass
@@ -40,18 +40,18 @@ Tips and useful commands
40
40
To use a different date pass a date measured in seconds since 1st Jan 1970
41
41
as the third argument.
42
42
43
- * `:call LedgerSetTransactionState (line('.'), '*')`
43
+ * `:call ledger#transaction_state_set (line('.'), '*')`
44
44
45
45
sets the state of the current transaction to '*'. You can use this in custom
46
46
mappings.
47
47
48
- * `:call LedgerToggleTransactionState (line('.'), ' *?!')`
48
+ * `:call ledger#transaction_state_toggle (line('.'), ' *?!')`
49
49
50
50
will toggle through the provided transaction states. You can map this to
51
51
double-clicking for example:
52
52
53
53
noremap <silent><buffer> <2-LeftMouse> \
54
- :call LedgerToggleTransactionState (line('.'), ' *?!')<CR>
54
+ :call ledger#transaction_state_toggle (line('.'), ' *?!')<CR>
55
55
56
56
==============================================================================
57
57
SETTINGS *ledger-settings*
0 commit comments