lsheng
lsheng

Reputation: 3739

Shortcuts for Switching Scripts within Editor in Spyder

Does anyone know the shortcuts to switch between different scripts opened in Spyder?

I know that Ctrl + Shift + E is for switching to editor, but within the editor, is there any ways to switch with just keyboards?

Upvotes: 2

Views: 4454

Answers (3)

rafine
rafine

Reputation: 471

in python 3.8 , only

Ctrl + Shift + p

worked for me

Upvotes: 0

Carlos Cordoba
Carlos Cordoba

Reputation: 34156

You can also use Ctrl+P to show a widget listing all your open files. You can filter them there too.

Upvotes: 2

barrios
barrios

Reputation: 1124

You can switch between files with CTRL+Pageup / Pagedown, but there is still an open issue with that https://code.google.com/p/spyderlib/issues/detail?id=43. For me it works fine in the currentversion.

Upvotes: 3

Related Questions