Cash Prokop-Weaver

Results 62 comments of Cash Prokop-Weaver

It looks like I didn't set the upgrade path correctly. I'm not seeing the "In order to import..." dialog when starting Anki.

There; I think I've fixed it up. I tested it locally (at 1.3.0, then upgrading to 1.3.1 by copying the built files into the addon directory) and everything worked.

@sobjornstad Sorry for the delay!

Were there ever [tests added](https://github.com/alphapapa/org-super-agenda/pull/175#issuecomment-723509472) for `:take`? I don't see anything in https://github.com/alphapapa/org-super-agenda/blob/master/test/test.el.

I was able to fix this locally by changing `org-super-agenda--group-dispatch-take` to: ```elisp (cl-defun org-super-agenda--group-dispatch-take (items n-and-group) "Take N ITEMS that match selectors in GROUP. If N is positive, take the...

I think it's the `&rest` that's causing it. The `group` variable appears to be wrapped by an extra set of parenthesis in my debug window (eg: `((:tag "concept"))` rather than...

As far as I can tell: 1. The equivalent of an Anki card is a "position" 2. A new position would be one with an [`interval` of `0`](https://github.com/l3kn/org-fc/blob/main/org-fc-algo-sm2.el#L119)

> What are you trying to accomplish with a “New cards/day” setting? I'd like to spread new reviews out to avoid spikes in daily review counts. Your suggestion ("... suspend...

I'm using doom emacs and have the following to handle font size during review: ```el (use-package! org-fc ... :config ... (defun cashweaver/org-fc--increase-font-size() (doom/increase-font-size 2)) (add-hook! 'org-fc-before-setup-hook #'cashweaver/org-fc--increase-font-size) (add-hook! 'org-fc-after-review-hook #'doom/reset-font-size)...