Let's say I have a few lines I want to run one-by-one.
x=5
y=6
print(x+y)
I set the cursor on x=5
and press Shift + Enter, which according to the settings does this: Python: Run current cell and advance
However when I press shift + enter, it runs the current line, but doesn't advance it just stays there.
Any idea how to fix this?