tags:

views:

594

answers:

4

How can I run trough the tabs in Notepad++ easily? I like to use Ctrl+PgUp/Down like in Firefox.

+2  A: 

Use Ctrl + Tab . Same will apply to most tabbed applications. :)

Mazzi
A: 

Use Cntrl+Shft+Tab to run through the documents.

From All the keyboard shortcuts

Ctrl+Tab switches between 2 documents.

astander
*** Sigh *** lol
Mazzi
A: 

To enable Ctrl+PgUp/Down tab-switching behaviour, use AutoHotkey script:

#IfWinActive, ahk_class Notepad++
^PgDn::send {XButton2}
^PgUp::send {XButton1}

This script has a minor bug: when Notepad++ window is focused but the mouse pointer is placed outside of it, then the AutoHotkey {XButton2} will go to the window over which the mouse pointer floats. (Has anybody found a better solution?)

This script is based on the one taken from this blog.

Michał Oniszczuk
+1  A: 

I'm using Notepad++ version 5.7, and it's simple to change the behavior to do exactly what you're looking for -- use Ctrl+PgUp/PgDown to change tabs just like in Firefox. Here's how:

Step 1: Click Settings | Shortcut Mapper... and make sure "Main menu" is highlighted at the top of the window. Then scroll to the very bottom of the list, and find the line that says "Switch to previous document". Double click on it's current shortcut value, and in the window that comes up change the shortcut to "Ctrl + Page up". Similarly, change the shortcut for "Switch to next document" to "Ctrl + Page down".

Step 2: Click Settings | Preferences... | MISC. tab. In the "Document Switcher (Ctrl+TAB)" box, uncheck "Enable MRU behavior". This is needed so that switching to the next/previous document will switch to an adjacent tab, rather than switching to the Most Recently Used tab.

EDIT: shoot, this question is answered far better here:

http://superuser.com/questions/137230/switching-to-tabs-to-the-right-or-left-of-the-current-tab-in-notepad

Wish I'd seen that first! :)

Steve K