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.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
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.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
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.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
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.
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'}
};
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.
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.
https://sourceforge.net/projects/openctags/forums/forum/485219/topic/4867617
I'll release an new version.
It's will support notepad++ by set extern tool without dll plugin.