Menu

Error in hot keys

Help
Manfred K
2007-01-24
2013-04-23
  • Manfred K

    Manfred K - 2007-01-24

    When testing the plugin I found some errors:

    When using Notepad++ v3.5 usage of hot keys of plug in is OK.
    Unfortunately when using Notepad++ v3.9 usage of hot keys of plugin fails. Seems that Notepad++ has changed the plug in interface or the hot key interface or has an error.

    I' sorry that I can't make suggestions to fix this. Because I don't no the reason.

    I have copied the sources and added functionality so I can use "external" ctag files.

     
    • Manfred K

      Manfred K - 2007-01-29

      Common "short cuts" of Notepad++ 3.9 are using "short cuts" of the plug in.

      You may download the sources and change the short cuts in OpenCTagsForNpp.cpp line 37..42 from <ALT>+... to <CTRL>+<ALT>+...:

      old:
      static ShortcutKey shctOCT[] = {
          {false, true, false, VK_SPACE},
          {false, true, false, 'N'},
          {false, true, false, 'P'},
          {false, true, false, 'C'}
      };
      new
      static ShortcutKey shctOCT[] = {
          {true, true, false, VK_SPACE},
          {true, true, false, 'N'},
          {true, true, false, 'P'},
          {true, true, false, 'C'}
      };

       
    • rjuncu

      rjuncu - 2007-02-12

      I've tried the newest version of Notepad++, the 4.0.1, and didn't see the problem.
      Can you describe me more the conflict?
      Anyway, I think that is a goos idea to have the possibility to customise the hotkeys, I'll do this.

      Thanks for trying.

       
    • Manfred K

      Manfred K - 2007-02-18

      You may have a look at documentation of notepad++ short cuts:
      http://notepad-plus.sourceforge.net/uk/shortcuts.php

      Customizing the hot keys is a good idea! You may contact the notepad++ developers to get some short cuts?

      If you want to extend functionality please think about possibility to use several "ctag" files from any place:

      In my extension of your application I have added reading an environment variable tags prior using your tag file: tags contains pathes of ctag files, separated by ";". Finding of the entry is now a loop over these files.

      If you want I will send the changed files.

       

Log in to post a comment.

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.