Community
    • Login

    List of all assigned keyboard shortcuts

    Scheduled Pinned Locked Moved Help wanted · · · – – – · · ·
    47 Posts 17 Posters 29.4k Views
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • Alan KilbornA
      Alan Kilborn @Ekopalypse
      last edited by

      @Ekopalypse

      Interesting approach to get some of the shortcuts. :)

      EkopalypseE 1 Reply Last reply Reply Quote 0
      • EkopalypseE
        Ekopalypse @Alan Kilborn
        last edited by

        @Alan-Kilborn

        Why some? What did I miss?

        Alan KilbornA 1 Reply Last reply Reply Quote 0
        • Alan KilbornA
          Alan Kilborn @Ekopalypse
          last edited by

          @Ekopalypse

          Well, just as one example, most (if not all) Scintilla commands that have shortcuts in Shortcut Mapper are not output by the script.

          EkopalypseE 1 Reply Last reply Reply Quote 2
          • EkopalypseE
            Ekopalypse @Alan Kilborn
            last edited by Ekopalypse

            @Alan-Kilborn

            You are right, how could I miss those?
            Damn it.

            Alan KilbornA 1 Reply Last reply Reply Quote 1
            • Alan KilbornA
              Alan Kilborn @Ekopalypse
              last edited by

              @Ekopalypse

              I have seen this thread before, but didn’t have any new ideas about it. When I saw your recent efforts, I thought it was interesting as I hadn’t thought about that kind of approach. So now I’m thinking, if the Shortcut Mapper info is left in memory (after being invoked once?), could some ctypes magic find it and report it? I don’t know enough about the internals, IIRC doesn’t it use something called BabyGrid or something like that?

              EkopalypseE 2 Replies Last reply Reply Quote 2
              • EkopalypseE
                Ekopalypse @Alan Kilborn
                last edited by

                @Alan-Kilborn

                if the Shortcut Mapper info is left in memory (after being invoked once?), could some ctypes magic find it and report it

                Not sure about it, digging in npps memory seems to be a dangerous place :-D

                1 Reply Last reply Reply Quote 1
                • Alan KilbornA
                  Alan Kilborn
                  last edited by

                  Maybe it would be best if N++ itself had a feature to export this infos. :P

                  EkopalypseE 1 Reply Last reply Reply Quote 1
                  • EkopalypseE
                    Ekopalypse @Alan Kilborn
                    last edited by Ekopalypse

                    @Alan-Kilborn

                    the shortcut mapper dialog seems to be the trusted source in this situation, isn’t it?
                    As it is a blocking dialog we start it in a different thread and then searching for the tabsyscontrol
                    and then with some magic ctypes we should be able to get the shortcuts currently configured.
                    Hmm, fun project - I guess I’ll give it a try :-)

                    1 Reply Last reply Reply Quote 2
                    • EkopalypseE
                      Ekopalypse @Alan Kilborn
                      last edited by

                      @Alan-Kilborn

                      unfortunately TCM_SETCURSEL doesn’t trigger babygrid to be updated therefore I had to use keybd_event but seems to work.

                      import ctypes
                      import ctypes.wintypes as wintypes
                      from threading import Thread
                      import time
                      
                      user32 = ctypes.WinDLL('user32', use_last_error=True)
                      
                      def start_sk_dialog():
                          notepad.menuCommand(MENUCOMMAND.SETTING_SHORTCUT_MAPPER)
                      
                      
                      sk_mapper = Thread(target=start_sk_dialog)
                      sk_mapper.start()
                      time.sleep(1)
                      
                      WM_USER = 1024
                      WM_CLOSE = 16
                      
                      TCM_FIRST = 4864
                      TCM_GETITEMCOUNT = (TCM_FIRST + 4)
                      TCM_SETCURSEL = (TCM_FIRST + 12)
                      
                      BABYGRID_USER = (WM_USER + 7000)
                      BGM_GETCELLDATA  = BABYGRID_USER + 4
                      BGM_GETROWS  = BABYGRID_USER + 23
                      
                      class BGCELL(ctypes.Structure):
                          _fields_ = [('row', wintypes.INT),
                                      ('col', wintypes.INT)]
                      
                      cell_buffer = ctypes.create_unicode_buffer(1000)
                      
                      bgcell = BGCELL()
                      
                      sk_mapper_hwnd = user32.FindWindowW(None, u'Shortcut mapper')
                      sys_tab_hwnd = user32.FindWindowExW(sk_mapper_hwnd, None, u'SysTabControl32',None)
                      item_count = user32.SendMessageW(sys_tab_hwnd, TCM_GETITEMCOUNT, 0, 0)
                      babygrid = user32.FindWindowExW(sk_mapper_hwnd, None, u'BABYGRID',None)
                      
                      shortcuts = []
                      for tab in range(item_count):
                          rows = user32.SendMessageW(babygrid, BGM_GETROWS, 0, 0)
                          print 'rows', rows
                      
                          for i in range(1, rows+1):
                              shortcut = []
                              for j in range(1,3):
                                  bgcell.row = i
                                  bgcell.col = j
                                  res = user32.SendMessageW(babygrid,
                                                    BGM_GETCELLDATA,
                                                    ctypes.byref(bgcell),
                                                    cell_buffer)
                                  shortcut.append(cell_buffer.value)
                              shortcuts.append(shortcut)
                      
                          user32.SetForegroundWindow(sk_mapper_hwnd)
                          user32.SendMessageW(sys_tab_hwnd, TCM_SETCURSEL, tab, 0)
                          user32.keybd_event(0x27,0,0,0)
                          user32.keybd_event(0x27,0,2,0)
                      
                      user32.SendMessageW(sk_mapper_hwnd, WM_CLOSE, 0, 0)
                      
                      _max_length = len(max([x[0] for x in shortcuts if x[1]], key=len))
                      notepad.new()
                      editor.setText('\r\n'.join(['{0:<{2}} : {1}'.format(x[0], x[1], _max_length) for x in shortcuts if x[1]]))
                      
                      Alan KilbornA 1 Reply Last reply Reply Quote 2
                      • Alan KilbornA
                        Alan Kilborn @Ekopalypse
                        last edited by

                        @Ekopalypse

                        Hmmm, poking around this a little bit…

                        I get zero returned from the FindWindowW call, even though the window is opened by the script. Looking closer, I see in the call it is looking for Shortcut mapper but my window title is Shortcut Mapper. But changing the script to have a capital M makes no difference; zero still returned…

                        EkopalypseE 2 Replies Last reply Reply Quote 1
                        • EkopalypseE
                          Ekopalypse @Alan Kilborn
                          last edited by

                          @Alan-Kilborn

                          strange, which npp version do you use?

                          1 Reply Last reply Reply Quote 0
                          • EkopalypseE
                            Ekopalypse @Alan Kilborn
                            last edited by

                            @Alan-Kilborn

                            I tried it with 7.6.6(64bit) and 7.7.1(32bit).
                            And title is on both Shortcut mapper

                            Alan KilbornA 1 Reply Last reply Reply Quote 1
                            • Alan KilbornA
                              Alan Kilborn @Ekopalypse
                              last edited by

                              @Ekopalypse said:

                              And title is on both Shortcut mapper

                              In answering this question, I went down a road with a fork in it. I took the fork.

                              Seriously, though, I’m using 7.7.1 32-bit.

                              At first I thought, well, okay, maybe I changed Shortcut mapper to Shortcut Mapper in my english_customizable.xml file. So I grabbed a fresh portable 7.7.1 32-bit and ran it and I see Shortcut mapper. Then I change the Localization setting to English and I see Shortcut Mapper. Trying English (customizable) I also see Shortcut Mapper.

                              Note: In my real copy of N++ I also run with english_customizable.xml.

                              So I suppose I now know where the M versus m appears from. Re-running my fresh copy of N++ after choosing English from the menu results in Shortcut mapper again, so I’m not sure but really would like to understand what it takes to make a Localization choice “stick”… But that’s another issue. Maybe if one chooses anything besides English, it sticks, but if you choose English nothing happens on the next run, because the default language is supposed to be that, and in reality the base localization and the english.xml file, which probably should be the same…aren’t. Little, subtle differences… But all that, as I said, is a different issue…

                              I dabbled a bit more with the script and I think I see why I’m getting zero for the hwnd. If I increase the sleep time to something like 5 seconds and run the script, it seems like I should see the Shortcut Mapper window pop up fairly quickly and then somewhat of a delay before the rest of the code runs. In reality the window popping up seems to be delayed by the 5 seconds as well. So I suspect that maybe the window really isn’t there yet for FindWindowW to find it…?

                              EkopalypseE 1 Reply Last reply Reply Quote 1
                              • EkopalypseE
                                Ekopalypse @Alan Kilborn
                                last edited by

                                @Alan-Kilborn

                                that localization thing confuses me every time I use it.

                                What happens if you use this

                                from threading import Thread
                                import time
                                
                                def start_sk_dialog():
                                    notepad.menuCommand(MENUCOMMAND.SETTING_SHORTCUT_MAPPER)
                                
                                
                                sk_mapper = Thread(target=start_sk_dialog)
                                sk_mapper.start()
                                
                                time.sleep(5)
                                print 'done'
                                

                                For me it opens the dialog very quickly and after 5 seconds I see the done
                                in the console but dialog still open.

                                Alan KilbornA 1 Reply Last reply Reply Quote 2
                                • Alan KilbornA
                                  Alan Kilborn @Ekopalypse
                                  last edited by Alan Kilborn

                                  @Ekopalypse said:

                                  that localization thing confuses me every time I use it.

                                  LOL.

                                  I think I solved the mystery of the script. I have a little script-runner script that allows me to run the current .py file, so I don’t have to always go Plugins > Pythonscript > Scripts > (find my script) over and over with the mouse. This is handy for trying out temporary scripts that I haven’t bound to a keycombo (e.g. yours).

                                  If I DO run your script via the menu method and NOT via my script-runner, all goes as planned and I achieve your list of keycombinations! Well done! I’m not sure why my script-runner interferes, but I don’t care enough to go and figure that out. But…sorry for creating additional trouble for you due to all the troubleshooting, that was completely my fault.

                                  1 Reply Last reply Reply Quote 2
                                  • Alan KilbornA
                                    Alan Kilborn
                                    last edited by Alan Kilborn

                                    I’m calling this thread incomplete until someone provides the full listing of a default set of keycombo assignments for Notepad++ 7.7.1, as output by the script shown above. As no one has done that yet, well… :

                                    New                                : Ctrl+N
                                    Open...                            : Ctrl+O
                                    Reload from Disk                   : Ctrl+R
                                    Save                               : Ctrl+S
                                    Save As...                         : Ctrl+Alt+S
                                    Save All                           : Ctrl+Shift+S
                                    Close                              : Ctrl+W
                                    Close All                          : Ctrl+Shift+W
                                    Print...                           : Ctrl+P
                                    Exit                               : Alt+F4
                                    Restore Recent Closed File         : Ctrl+Shift+T
                                    UPPERCASE                          : Ctrl+Shift+U
                                    lowercase                          : Ctrl+U
                                    Proper Case                        : Alt+U
                                    Proper Case (blend)                : Alt+Shift+U
                                    Sentence case                      : Ctrl+Alt+U
                                    Sentence case (blend)              : Ctrl+Alt+Shift+U
                                    Split Lines                        : Ctrl+I
                                    Join Lines                         : Ctrl+J
                                    Move Up Current Line               : Ctrl+Shift+Up
                                    Move Down Current Line             : Ctrl+Shift+Down
                                    Insert Blank Line Above Current    : Ctrl+Alt+Enter
                                    Insert Blank Line Below Current    : Ctrl+Alt+Shift+Enter
                                    Toggle Single Line Comment         : Ctrl+Q
                                    Single Line Comment                : Ctrl+K
                                    Single Line Uncomment              : Ctrl+Shift+K
                                    Block Comment                      : Ctrl+Shift+Q
                                    Function Completion                : Ctrl+Spacebar
                                    Path Completion                    : Ctrl+Alt+Spacebar
                                    Word Completion                    : Ctrl+Enter
                                    Function Parameters Hint           : Ctrl+Shift+Spacebar
                                    Column Editor...                   : Alt+C
                                    Find...                            : Ctrl+F
                                    Find in Files...                   : Ctrl+Shift+F
                                    Find Next                          : F3
                                    Find Previous                      : Shift+F3
                                    Select and Find Next               : Ctrl+F3
                                    Select and Find Previous           : Ctrl+Shift+F3
                                    Find (Volatile) Next               : Ctrl+Alt+F3
                                    Find (Volatile) Previous           : Ctrl+Alt+Shift+F3
                                    Replace...                         : Ctrl+H
                                    Incremental Search                 : Ctrl+Alt+I
                                    Search Results Window              : F7
                                    Previous Search Result             : Shift+F4
                                    Next Search Result                 : F4
                                    Go to...                           : Ctrl+G
                                    Go to Matching Brace               : Ctrl+B
                                    Select All Between Matching Braces : Ctrl+Alt+B
                                    1st Style                          : Ctrl+Shift+1
                                    2nd Style                          : Ctrl+Shift+2
                                    3rd Style                          : Ctrl+Shift+3
                                    4th Style                          : Ctrl+Shift+4
                                    5th Style                          : Ctrl+Shift+5
                                    Find Style                         : Ctrl+Shift+0
                                    1st Style                          : Ctrl+1
                                    2nd Style                          : Ctrl+2
                                    3rd Style                          : Ctrl+3
                                    4th Style                          : Ctrl+4
                                    5th Style                          : Ctrl+5
                                    Find Style                         : Ctrl+0
                                    Toggle Bookmark                    : Ctrl+F2
                                    Next Bookmark                      : F2
                                    Previous Bookmark                  : Shift+F2
                                    Toggle Full Screen Mode            : F11
                                    Post-It                            : F12
                                    1st Tab                            : Ctrl+Numpad 1
                                    2nd Tab                            : Ctrl+Numpad 2
                                    3rd Tab                            : Ctrl+Numpad 3
                                    4th Tab                            : Ctrl+Numpad 4
                                    5th Tab                            : Ctrl+Numpad 5
                                    6th Tab                            : Ctrl+Numpad 6
                                    7th Tab                            : Ctrl+Numpad 7
                                    8th Tab                            : Ctrl+Numpad 8
                                    9th Tab                            : Ctrl+Numpad 9
                                    Next Tab                           : Ctrl+Page down
                                    Previous Tab                       : Ctrl+Page up
                                    Move Tab Forward                   : Ctrl+Shift+Page down
                                    Move Tab Backward                  : Ctrl+Shift+Page up
                                    Switch to previous document        : Ctrl+Shift+Tab
                                    Switch to next document            : Ctrl+Tab
                                    Hide Lines                         : Alt+H
                                    Focus on Another View              : F8
                                    Fold All                           : Alt+0
                                    Unfold All                         : Alt+Shift+0
                                    Collapse Current Level             : Ctrl+Alt+F
                                    Uncollapse Current Level           : Ctrl+Alt+Shift+F
                                    1                                  : Alt+1
                                    2                                  : Alt+2
                                    3                                  : Alt+3
                                    4                                  : Alt+4
                                    5                                  : Alt+5
                                    6                                  : Alt+6
                                    7                                  : Alt+7
                                    8                                  : Alt+8
                                    1                                  : Alt+Shift+1
                                    2                                  : Alt+Shift+2
                                    3                                  : Alt+Shift+3
                                    4                                  : Alt+Shift+4
                                    5                                  : Alt+Shift+5
                                    6                                  : Alt+Shift+6
                                    7                                  : Alt+Shift+7
                                    8                                  : Alt+Shift+8
                                    Text Direction RTL                 : Ctrl+Alt+R
                                    Text Direction LTR                 : Ctrl+Alt+L
                                    Toggle macro record                : Ctrl+Shift+R
                                    Playback                           : Ctrl+Shift+P
                                    Run...                             : F5
                                    About Notepad++                    : F1
                                    Trim Trailing Space and Save       : Alt+Shift+S
                                    Trim Trailing Space and Save       : Alt+F1
                                    SCI_CUT                            : Ctrl+X or Shift+DEL
                                    SCI_COPY                           : Ctrl+C or Ctrl+INS
                                    SCI_PASTE                          : Ctrl+V or Shift+INS
                                    SCI_SELECTALL                      : Ctrl+A
                                    SCI_CLEAR                          : DEL
                                    SCI_UNDO                           : Ctrl+Z or Alt+Backspace
                                    SCI_REDO                           : Ctrl+Y or Ctrl+Shift+Z
                                    SCI_NEWLINE                        : Enter or Shift+Enter
                                    SCI_TAB                            : Tab
                                    SCI_BACKTAB                        : Shift+Tab
                                    SCI_ZOOMIN                         : Ctrl+Num +
                                    SCI_ZOOMOUT                        : Ctrl+Num -
                                    SCI_SETZOOM                        : Ctrl+Num /
                                    SCI_SELECTIONDUPLICATE             : Ctrl+D
                                    SCI_EDITTOGGLEOVERTYPE             : INS
                                    SCI_LINEDOWN                       : Down
                                    SCI_LINEDOWNEXTEND                 : Shift+Down
                                    SCI_LINEDOWNRECTEXTEND             : Alt+Shift+Down
                                    SCI_LINESCROLLDOWN                 : Ctrl+Down
                                    SCI_LINEUP                         : Up
                                    SCI_LINEUPEXTEND                   : Shift+Up
                                    SCI_LINEUPRECTEXTEND               : Alt+Shift+Up
                                    SCI_LINESCROLLUP                   : Ctrl+Up
                                    SCI_PARADOWN                       : Ctrl+]
                                    SCI_PARADOWNEXTEND                 : Ctrl+Shift+]
                                    SCI_PARAUP                         : Ctrl+[~~~
                                    Alan KilbornA 1 Reply Last reply Reply Quote 1
                                    • Alan KilbornA
                                      Alan Kilborn @Alan Kilborn
                                      last edited by

                                      Hmmm, well there seems to be some gremlins in the machinery in the above script/listing, as Trim Trailing Space and Save is listed twice (the second appearance it is tied to Get PHP help’s default keycombo), and the default Run commands of Get PHP help, Wikipedia Search, and Open file in another instance don’t appear at all… :(

                                      EkopalypseE 1 Reply Last reply Reply Quote 1
                                      • EkopalypseE
                                        Ekopalypse @Alan Kilborn
                                        last edited by Ekopalypse

                                        @Alan-Kilborn

                                        looks like a timing issue, seems that user32.keybd_event returns to fast.
                                        Put a time.sleep(.1) after the second user32.keybd_event and it should be ok.

                                        Alan KilbornA 1 Reply Last reply Reply Quote 2
                                        • Alan KilbornA
                                          Alan Kilborn @Ekopalypse
                                          last edited by

                                          @Ekopalypse

                                          Yes, with that addition it appears OK. Once again, hopefully a correct Notepad++ 7.7.1 default keymapping list is:

                                          New                                : Ctrl+N
                                          Open...                            : Ctrl+O
                                          Reload from Disk                   : Ctrl+R
                                          Save                               : Ctrl+S
                                          Save As...                         : Ctrl+Alt+S
                                          Save All                           : Ctrl+Shift+S
                                          Close                              : Ctrl+W
                                          Close All                          : Ctrl+Shift+W
                                          Print...                           : Ctrl+P
                                          Exit                               : Alt+F4
                                          Restore Recent Closed File         : Ctrl+Shift+T
                                          UPPERCASE                          : Ctrl+Shift+U
                                          lowercase                          : Ctrl+U
                                          Proper Case                        : Alt+U
                                          Proper Case (blend)                : Alt+Shift+U
                                          Sentence case                      : Ctrl+Alt+U
                                          Sentence case (blend)              : Ctrl+Alt+Shift+U
                                          Split Lines                        : Ctrl+I
                                          Join Lines                         : Ctrl+J
                                          Move Up Current Line               : Ctrl+Shift+Up
                                          Move Down Current Line             : Ctrl+Shift+Down
                                          Insert Blank Line Above Current    : Ctrl+Alt+Enter
                                          Insert Blank Line Below Current    : Ctrl+Alt+Shift+Enter
                                          Toggle Single Line Comment         : Ctrl+Q
                                          Single Line Comment                : Ctrl+K
                                          Single Line Uncomment              : Ctrl+Shift+K
                                          Block Comment                      : Ctrl+Shift+Q
                                          Function Completion                : Ctrl+Spacebar
                                          Path Completion                    : Ctrl+Alt+Spacebar
                                          Word Completion                    : Ctrl+Enter
                                          Function Parameters Hint           : Ctrl+Shift+Spacebar
                                          Column Editor...                   : Alt+C
                                          Find...                            : Ctrl+F
                                          Find in Files...                   : Ctrl+Shift+F
                                          Find Next                          : F3
                                          Find Previous                      : Shift+F3
                                          Select and Find Next               : Ctrl+F3
                                          Select and Find Previous           : Ctrl+Shift+F3
                                          Find (Volatile) Next               : Ctrl+Alt+F3
                                          Find (Volatile) Previous           : Ctrl+Alt+Shift+F3
                                          Replace...                         : Ctrl+H
                                          Incremental Search                 : Ctrl+Alt+I
                                          Search Results Window              : F7
                                          Previous Search Result             : Shift+F4
                                          Next Search Result                 : F4
                                          Go to...                           : Ctrl+G
                                          Go to Matching Brace               : Ctrl+B
                                          Select All Between Matching Braces : Ctrl+Alt+B
                                          1st Style                          : Ctrl+Shift+1
                                          2nd Style                          : Ctrl+Shift+2
                                          3rd Style                          : Ctrl+Shift+3
                                          4th Style                          : Ctrl+Shift+4
                                          5th Style                          : Ctrl+Shift+5
                                          Find Style                         : Ctrl+Shift+0
                                          1st Style                          : Ctrl+1
                                          2nd Style                          : Ctrl+2
                                          3rd Style                          : Ctrl+3
                                          4th Style                          : Ctrl+4
                                          5th Style                          : Ctrl+5
                                          Find Style                         : Ctrl+0
                                          Toggle Bookmark                    : Ctrl+F2
                                          Next Bookmark                      : F2
                                          Previous Bookmark                  : Shift+F2
                                          Toggle Full Screen Mode            : F11
                                          Post-It                            : F12
                                          1st Tab                            : Ctrl+Numpad 1
                                          2nd Tab                            : Ctrl+Numpad 2
                                          3rd Tab                            : Ctrl+Numpad 3
                                          4th Tab                            : Ctrl+Numpad 4
                                          5th Tab                            : Ctrl+Numpad 5
                                          6th Tab                            : Ctrl+Numpad 6
                                          7th Tab                            : Ctrl+Numpad 7
                                          8th Tab                            : Ctrl+Numpad 8
                                          9th Tab                            : Ctrl+Numpad 9
                                          Next Tab                           : Ctrl+Page down
                                          Previous Tab                       : Ctrl+Page up
                                          Move Tab Forward                   : Ctrl+Shift+Page down
                                          Move Tab Backward                  : Ctrl+Shift+Page up
                                          Switch to previous document        : Ctrl+Shift+Tab
                                          Switch to next document            : Ctrl+Tab
                                          Hide Lines                         : Alt+H
                                          Focus on Another View              : F8
                                          Fold All                           : Alt+0
                                          Unfold All                         : Alt+Shift+0
                                          Collapse Current Level             : Ctrl+Alt+F
                                          Uncollapse Current Level           : Ctrl+Alt+Shift+F
                                          1                                  : Alt+1
                                          2                                  : Alt+2
                                          3                                  : Alt+3
                                          4                                  : Alt+4
                                          5                                  : Alt+5
                                          6                                  : Alt+6
                                          7                                  : Alt+7
                                          8                                  : Alt+8
                                          1                                  : Alt+Shift+1
                                          2                                  : Alt+Shift+2
                                          3                                  : Alt+Shift+3
                                          4                                  : Alt+Shift+4
                                          5                                  : Alt+Shift+5
                                          6                                  : Alt+Shift+6
                                          7                                  : Alt+Shift+7
                                          8                                  : Alt+Shift+8
                                          Text Direction RTL                 : Ctrl+Alt+R
                                          Text Direction LTR                 : Ctrl+Alt+L
                                          Toggle macro record                : Ctrl+Shift+R
                                          Playback                           : Ctrl+Shift+P
                                          Run...                             : F5
                                          About Notepad++                    : F1
                                          Trim Trailing Space and Save       : Alt+Shift+S
                                          Get PHP help                       : Alt+F1
                                          Wikipedia Search                   : Alt+F3
                                          Open file in another instance      : Alt+F6
                                          SCI_CUT                            : Ctrl+X or Shift+DEL
                                          SCI_COPY                           : Ctrl+C or Ctrl+INS
                                          SCI_PASTE                          : Ctrl+V or Shift+INS
                                          SCI_SELECTALL                      : Ctrl+A
                                          SCI_CLEAR                          : DEL
                                          SCI_UNDO                           : Ctrl+Z or Alt+Backspace
                                          SCI_REDO                           : Ctrl+Y or Ctrl+Shift+Z
                                          SCI_NEWLINE                        : Enter or Shift+Enter
                                          SCI_TAB                            : Tab
                                          SCI_BACKTAB                        : Shift+Tab
                                          SCI_ZOOMIN                         : Ctrl+Num +
                                          SCI_ZOOMOUT                        : Ctrl+Num -
                                          SCI_SETZOOM                        : Ctrl+Num /
                                          SCI_SELECTIONDUPLICATE             : Ctrl+D
                                          SCI_EDITTOGGLEOVERTYPE             : INS
                                          SCI_LINEDOWN                       : Down
                                          SCI_LINEDOWNEXTEND                 : Shift+Down
                                          SCI_LINEDOWNRECTEXTEND             : Alt+Shift+Down
                                          SCI_LINESCROLLDOWN                 : Ctrl+Down
                                          SCI_LINEUP                         : Up
                                          SCI_LINEUPEXTEND                   : Shift+Up
                                          SCI_LINEUPRECTEXTEND               : Alt+Shift+Up
                                          SCI_LINESCROLLUP                   : Ctrl+Up
                                          SCI_PARADOWN                       : Ctrl+]
                                          SCI_PARADOWNEXTEND                 : Ctrl+Shift+]
                                          SCI_PARAUP                         : Ctrl+[
                                          SCI_PARAUPEXTEND                   : Ctrl+Shift+[
                                          SCI_CHARLEFT                       : Left
                                          SCI_CHARLEFTEXTEND                 : Shift+Left
                                          SCI_CHARLEFTRECTEXTEND             : Alt+Shift+Left
                                          SCI_CHARRIGHT                      : Right
                                          SCI_CHARRIGHTEXTEND                : Shift+Right
                                          SCI_CHARRIGHTRECTEXTEND            : Alt+Shift+Right
                                          SCI_WORDLEFT                       : Ctrl+Left
                                          SCI_WORDLEFTEXTEND                 : Ctrl+Shift+Left
                                          SCI_WORDRIGHT                      : Ctrl+Right
                                          SCI_WORDRIGHTENDEXTEND             : Ctrl+Shift+Right
                                          SCI_WORDPARTLEFT                   : Ctrl+/
                                          SCI_WORDPARTLEFTEXTEND             : Ctrl+Shift+/
                                          SCI_WORDPARTRIGHT                  : Ctrl+\
                                          SCI_WORDPARTRIGHTEXTEND            : Ctrl+Shift+\
                                          SCI_HOMEDISPLAY                    : Alt+Home
                                          SCI_VCHOMEWRAPEXTEND               : Shift+Home
                                          SCI_VCHOMERECTEXTEND               : Alt+Shift+Home
                                          SCI_VCHOMEWRAP                     : Home
                                          SCI_LINEENDWRAPEXTEND              : Shift+End
                                          SCI_LINEENDRECTEXTEND              : Alt+Shift+End
                                          SCI_LINEENDDISPLAY                 : Alt+End
                                          SCI_LINEENDWRAP                    : End
                                          SCI_DOCUMENTSTART                  : Ctrl+Home
                                          SCI_DOCUMENTSTARTEXTEND            : Ctrl+Shift+Home
                                          SCI_DOCUMENTEND                    : Ctrl+End
                                          SCI_DOCUMENTENDEXTEND              : Ctrl+Shift+End
                                          SCI_PAGEUP                         : Page up
                                          SCI_PAGEUPEXTEND                   : Shift+Page up
                                          SCI_PAGEUPRECTEXTEND               : Alt+Shift+Page up
                                          SCI_PAGEDOWN                       : Page down
                                          SCI_PAGEDOWNEXTEND                 : Shift+Page down
                                          SCI_PAGEDOWNRECTEXTEND             : Alt+Shift+Page down
                                          SCI_DELETEBACK                     : Backspace or Shift+Backspace
                                          SCI_DELWORDLEFT                    : Ctrl+Backspace
                                          SCI_DELWORDRIGHT                   : Ctrl+DEL
                                          SCI_DELLINELEFT                    : Ctrl+Shift+Backspace
                                          SCI_DELLINERIGHT                   : Ctrl+Shift+DEL
                                          SCI_LINEDELETE                     : Ctrl+Shift+L
                                          SCI_LINECUT                        : Ctrl+L
                                          SCI_LINECOPY                       : Ctrl+Shift+X
                                          SCI_LINETRANSPOSE                  : Ctrl+T
                                          SCI_CANCEL                         : Esc
                                          
                                          EkopalypseE 1 Reply Last reply Reply Quote 3
                                          • EkopalypseE
                                            Ekopalypse @Alan Kilborn
                                            last edited by

                                            @Alan-Kilborn

                                            looped it 500 times and returned always with the same 181 defined shortcuts
                                            but who knows how this runs on a much slower or faster machine than mine??
                                            I haven’t digged deeper if there is another way to switch the tabs then simulating the tab key event, preferable via winapi, but I guess adjusting a timer shouldn’t be an issue.

                                            1 Reply Last reply Reply Quote 2
                                            • First post
                                              Last post
                                            The Community of users of the Notepad++ text editor.
                                            Powered by NodeBB | Contributors