#How to Bias New Cards to Appear Earlier in Reviews?

3 messages · Page 1 of 1 (latest)

clever mist
#

How can I make new cards appear earlier in my review sessions (without changing my learning steps)? I’m using FSRS Helper but can’t find the right settings to prioritise new cards in my daily review (if there is a way).

Goal:
I want to mix my new cards with reviews, but see them earlier in the session (skew/bias earlier).
I would like to be able to review my decks normally this way. When putting all new cards first, its too many new cards at once and doesn't suit me.

Why:
Because I have several learning steps, it means at the end I'm always left with loads of new cards and not many of other reviews.

high timber
#

This autohotkey hack technically would do what you ask, by toggling the sort order every 10 times you press space

#HotIf WinActive("Anki")
count:=0
mix:=true
~Space::
{
    global count, mix
    count:=count+1
    if(count>=10){
        Send "o"
        WinWaitActive("Options for ")
        Sleep 2000
        Send "{Tab 19}{Enter}"
        if(mix){
            Send "{Up 2}"
        }else{
            Send "{Down 2}"
        }
        Send "{Enter}^{Enter}"
        mix:=!mix
        count:=0
    }
}

It would be faster to open the python console though

clever mist