Display Descriptions of A Selected Keyword
-
How can I add a method to show some descriptions when user select a keyword? e.g. when user select keyword “int”, there could be a textbox below shows "Integer -32,768 to 32,767 ".
-
There is no option in native Notepad++ to do this.
One could write a plugin to do it. Or one could use a scripting plugin, like PythonScript, to do it. But the one who wrote the plugin or script would have to supply all the data (the map of keywords to information about the keyword).
I don’t know how to make a popup in the scripting languages, and have never written a plugin, so I cannot help you with either of those.
However, in the past I have shared scripts like this one that change the status bar to show information based on the current selection: you could alias a script similar to that one to the keyboard shortcut of your choice, and have it perform a lookup for keyword=>description, then change the status bar to the description.
-
@Long-Chang said in Display Descriptions of A Selected Keyword:
Integer -32,768 to 32,767
Are you looking for something like this

from Npp import editor, SCINTILLANOTIFICATION, UPDATE suggestion_dict = {'int': 'Integer -32,768 to 32,767'} def on_select(args): if args['updated'] & UPDATE.SELECTION: x = suggestion_dict.get(editor.getCurrentWord(), None) if x: editor.callTipShow(editor.getCurrentPos(), x) # editor.clearCallbacks([ SCINTILLANOTIFICATION.UPDATEUI ]) editor.callbackSync(on_select, [ SCINTILLANOTIFICATION.UPDATEUI ])Needs the pythonscript plugin to be installed.
Hello! It looks like you're interested in this conversation, but you don't have an account yet.
Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.
With your input, this post could be even better 💗
Register Login