summaryrefslogtreecommitdiff
path: root/gnosis.el
AgeCommit message (Collapse)Author
2024-04-02gnosis-edit-note: Add dashboard as argThanos Apollo
Specify dashboard to return to, by default notes.
2024-04-02gnosis-tag-prompt: RewriteThanos Apollo
Since we are not using gnosis-tag-prompt to input tags for notes, this was due for a rewrite. This function will be used to select tags, which could be used to output a note-id collection for specified tags.
2024-04-02gnosis-cloze-replace-words: Do not use regexp for wordThanos Apollo
2024-03-14Add gnosis-modeline-modeThanos Apollo
Minor mode to display total due notes on modeline.
2024-03-10gnosis--get-deck-name: Improve error messageThanos Apollo
Make it easier for users to understand what is going when they create their first note.
2024-03-10[fix] gnosis-cloze-replace-words: Fix string matchingThanos Apollo
Fix string matching to only match whole words
2024-03-10[fix] gnosis-review-cloze: Fix multiple clozes revealThanos Apollo
Previous implementation would reveal clozes in the wrong order when using > 3 clozes.
2024-03-10Version bump: 0.2.1Thanos Apollo
- Make gnosis compatible with older emacs versions
2024-03-10Use gnosis-string-edit.elThanos Apollo
- Add gnosis-read-string-from-buffer - Make gnosis available to older versions of emacs
2024-03-08[fix] gnosis-edit-update-note: Add assert for suspendThanos Apollo
Make sure that suspend value is either 0 or 1
2024-03-08gnosis-mcq-display-choices: Default to nilThanos Apollo
2024-03-08Version bump: 0.2.0Thanos Apollo
2024-03-08Update doc & fix typosThanos Apollo
2024-03-08gnosis-vc-pull: Reopen gnosis-db after pullThanos Apollo
2024-03-08gnosis-dashboard-output-decks: styleThanos Apollo
Change indentation for lambda func
2024-03-08gnosis-add-note-mcq: Update docstringThanos Apollo
2024-03-08gnosis-add-deck: Update deck fields for initial-intervalThanos Apollo
2024-03-08gnosis-mcq-guidance: Rewrite as consThanos Apollo
2024-03-08Add gnosis-get-note-initial-intervalThanos Apollo
2024-03-08Add gnosis-get-deck-initial-intervalThanos Apollo
2024-03-08gnosis-add-note-fields: Refactor using emacsql-with-transactionThanos Apollo
2024-03-08Add gnosis-mcq-options-seperatorThanos Apollo
Seperate each option
2024-03-08Add gnosis-mcq-seperatorThanos Apollo
Seperate the stem field from the options
2024-03-08Rewrite addint mcq note typesThanos Apollo
Use gnosis-prompt-mcq-input, and from that split into stem, choices & correct-choice. This should make creation of mcq note types faster
2024-03-08gnosis-cloze-guidance: Rewrite as a consThanos Apollo
2024-03-08gnosis-edit: Adjust for deck initial intervalThanos Apollo
2024-03-08gnosis-dashboard: Display total note number as integerThanos Apollo
2024-03-08Add initial-interval column for decksThanos Apollo
Set initial interval for all notes under deck. Make it easier to customize gnosis-algorithm for all notes under deck, e.g have 0 as the first interval for foreign language learning while 1 for biology deck etc.
2024-03-08Disable delete funcsThanos Apollo
Deleting rows breaks foreign key implementation. This needs further testing
2024-03-07Add gnosis-delete-noteThanos Apollo
2024-03-06Add gnosis-mcq-guidanceThanos Apollo
2024-03-05gnosis-cloze-replace-words: Use regexp-quoteThanos Apollo
Having \\b would not work for words that have - or other nonregular symbols
2024-03-05Fix gnosis-compare-stringThanos Apollo
- Using = will not work when gnosis-string-difference is 1
2024-03-05gnosis-edit-update-note: Adjust cl-assert options for MCQThanos Apollo
2024-03-05gnosis-vc-pull: Re-open gnosis-db after pullThanos Apollo
2024-03-05package: Update commentaryThanos Apollo
2024-03-05gnosis-cloze-replace-words: Use \\bThanos Apollo
Make sure it replace word properly, including dashes/symbols
2024-03-04gnosis-edit-update-note: Add assert for optionsThanos Apollo
2024-03-04Refactor gnosis-compare-stringsThanos Apollo
Adjust for when gnosis-string-difference is >= answer length
2024-03-04Refactor editing notes for recursive editsThanos Apollo
Adjust gnosis-edit-save-exit func for recursive-edit arg. If not given any just pop back to gnosis-dashboard, else exit recursive edit. gnosis-edit-note will be called either in a recursive edit during note review or from the dashboard.
2024-03-04Update docstringsThanos Apollo
Apply flycheck info fixes
2024-03-04packaging: Update package commentaryThanos Apollo
2024-03-04packaging: Require emacs 29.1Thanos Apollo
To use read-string-from-buffer we need to use emacs-29. As of now compat does not provide this.
2024-03-03gnosis-edit-update-note: Update assertionsThanos Apollo
- Add asserts for extras to allow nil value
2024-03-03gnosis-review-algorithm: Add gnosis-get-ef-VALUEThanos Apollo
Use ef-increase/decrease/threshold for deck if defined. Otherwise refer to the coresponding variables
2024-03-03gnosis-edit-update-note: Add assertsThanos Apollo
2024-03-03Add gnosis-get-ef-thresholdThanos Apollo
2024-03-03Add gnosis-get-ef-decreaseThanos Apollo
2024-03-03Add gnosis-get-ef-increaseThanos Apollo
2024-03-03[fix] gnosis-review--update: Return ef properlyThanos Apollo