Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] Implement tag completion #217

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 25 additions & 1 deletion ledger-complete.el
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,23 @@ If nil, full account names are offered for completion."
;; to the list
(sort (delete-dups payees-list) #'string-lessp)))

(defun ledger-tags-in-buffer ()
"Return a list of all tags in the current buffer.
Tags can be defined by either 1) following an indented semicolon
inside a transaction or 2) by a \"tag\" command directive."
(save-excursion
(goto-char (point-min))
(let ((tags))
;; Get tags declared via "tag" account directive
(while (re-search-forward ledger-tag-directive-regex nil t)
(push (match-string-no-properties 1) tags))
;; Get tags declared in transactions
(goto-char (point-min))
(while (re-search-forward (concat "[[:space:]]+;[[:space:]]*" ledger-tag-name-regex) nil t)
(push (match-string-no-properties 1) tags))
(setq tags (delete-dups tags))
(sort tags #'string-lessp))))

(defun ledger-accounts-in-buffer ()
"Return an alist of accounts in the current buffer.
The `car' of each element is the account name and the `cdr' is an
Expand Down Expand Up @@ -304,7 +321,14 @@ Looks in `ledger-accounts-file' if set, otherwise the current buffer."
realign-after t
collection (if ledger-complete-in-steps
#'ledger-accounts-tree
#'ledger-accounts-list))))
#'ledger-accounts-list)))
(;; Tags
(and (eq (save-excursion (ledger-thing-at-point))
'posting)
;; 1- to remove the end colon from `ledger-tag-name-regex'
(looking-back (substring ledger-tag-name-regex nil (1- (length ledger-tag-name-regex))) (line-beginning-position)))
(setq start (match-beginning 1)
collection #'ledger-tags-in-buffer)))
(when collection
(let ((prefix (buffer-substring-no-properties start end)))
(list start end
Expand Down
6 changes: 6 additions & 0 deletions ledger-regex.el
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,12 @@
(defconst ledger-init-string-regex
"^--.+?\\($\\|[ ]\\)")

(defconst ledger-tag-name-regex
"\\(?1:[^][();: \t\r\n]+\\(?: [^][();: \t\r\n]+\\)*\\):")

(defconst ledger-tag-directive-regex
(concat "^tag[ \t]+" ledger-tag-name-regex))

(defconst ledger-account-name-regex
"\\(?1:[^][(); \t\r\n]+\\(?: [^][(); \t\r\n]+\\)*\\)")

Expand Down