Does anyone knows a way to get C++ language context-sensitive help in N++?
Not 100% sure what will fit your needs. If you already have a .hlp file and you want to search the index based on the currently selected word, you can do something like this in shortcuts.xml (calls help on alt+Q)
<Command name="C++ Help" Ctrl="no" Alt="yes" Shift="no" Key="81">winhlp32 -k$(CURRENT_WORD) cpp.hlp</Command>
Well, I think this may fit my needs. Can you suggest a good .hlp file?
Does anyone knows a way to get C++ language context-sensitive help in N++?
Not 100% sure what will fit your needs. If you already have a .hlp file and you want to search the index based on the currently selected word, you can do something like this in shortcuts.xml (calls help on alt+Q)
<Command name="C++ Help" Ctrl="no" Alt="yes" Shift="no" Key="81">winhlp32 -k$(CURRENT_WORD) cpp.hlp</Command>
Well, I think this may fit my needs. Can you suggest a good .hlp file?