• Display Descriptions of A Selected Keyword

    3
    0 Votes
    3 Posts
    699 Views
    EkopalypseE
    @Long-Chang said in Display Descriptions of A Selected Keyword: Integer -32,768 to 32,767 Are you looking for something like this [image: 1604440078953-88b12277-2915-4d05-b1ef-b363d59efce0-image.png] 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.
  • Add sticky files to the file menu

    4
    0 Votes
    4 Posts
    828 Views
    PeterJonesP
    @Sergio-Vidal , If you had checked the FAQ section, you would have seen a topic called FAQ Desk: Feature Request or Bug Report which explains that this Forum is not an official feature request site. If you follow the instructions in that FAQ entry, you can search the existing official feature requests, and you will probably find that there is one or more open request to implement sticky files. If you don’t find such a request, try rephrasing (they might not call it “sticky” but “favorite” or other such wording); but if you really don’t find it already there, you could ask for it in the official issues page. Either way, be warned that the developers are not likely to implement a feature that has many workarounds – and being able to get the desired functionality with shortcuts, projects, sessions, or an existing plugin is likely enough workarounds that it won’t be implemented in the core project.
  • add text before the 2nd last space in each line?

    5
    0 Votes
    5 Posts
    1k Views
    gifthubbroG
    @Terry-R thanks that worked!
  • Notepad++ update broke my COPY functionality

    5
    0 Votes
    5 Posts
    853 Views
    Frank Overman 0F
    @litos81 Facepalm moment. Thank you!
  • Download default should be 64-bit, not 32-bit.

    3
    1 Votes
    3 Posts
    463 Views
    Ron WilliamsR
    @Alan-Kilborn said in Download default should be 64-bit, not 32-bit.: Notepad++ prides itself on being compatible with “old stuff”. :-) Fair point.
  • New copy colored text command in Notepad++ 7.9.1

    5
    3
    4 Votes
    5 Posts
    2k Views
    Logan JamesL
    @Alan-Kilborn Thanks a lot. Solved my problem too.
  • save-as-failure and focus is where , now ?

    12
    0 Votes
    12 Posts
    2k Views
    caryptC
    i made issue report here : https://github.com/notepad-plus-plus/notepad-plus-plus/issues/9091
  • Any way to have a fixed number of characters per line?

    5
    0 Votes
    5 Posts
    6k Views
    Alan KilbornA
    @prahladmifour said in Any way to have a fixed number of characters per line?: I hope this information will be useful to you. I think there’s a new bot in town. Reference: I hope this information will be useful to you.
  • gsheet formula sintax highlighting

    3
    2 Votes
    3 Posts
    1k Views
    D ArnaudD
    Hi Peter, Ok, I will read the rules and recommendation of submission UDL this weekend… Thank you
  • Request: Ctrl+F4 to close current document

    2
    0 Votes
    2 Posts
    435 Views
    EkopalypseE
    @Nathan-Legg Yes, goto settings->shortcut mapper->main menu->close and remap the shortcut.
  • Feature: add "Bug report" to Npp

    4
    0 Votes
    4 Posts
    591 Views
    Alan KilbornA
    PLUS… It is usually better for some bug/feature discussion to go on here (this site) first, IMO. A lot of things that users consider bugs are merely a lack of understanding. Developers probably won’t want to take the time to do what we do here. Of course, devs could just develop some boilerplate: Please ask this on the Community site Picturing some “bug reports”: I have this data where I want to remove commas but only when they occur after a number…
  • Possibly correct string or continuation

    7
    1
    0 Votes
    7 Posts
    777 Views
    Josianne MichelJ
    Really thank you litos81 :3 :3 ps: you can close my topic
  • Documentation suggestion: reload XML autocomplete file after editing

    2
    1 Votes
    2 Posts
    503 Views
    PeterJonesP
    @David-Shaked , If there were truly a bug, then it wouldn’t go here for the official reporting and tracking; there is a FAQ which explains where bug reports go if you want them officially noticed and tracked. However, it is best to come here and confirm first, which is what you did, so ++@David-Shaked In this case, it’s not a bug, at least from the way I understood your description. When you edit any Notepad++ config file (including the autocompletion files), there is a sequence defined in the user manual (https://npp-user-manual.org/docs/config-files/#editing-configuration-files) as the only reliable sequence to get the changes to take effect. If you follow any other sequence, you might get surprising results, or your changes might get overwritten.
  • Bug in Python Script

    5
    5
    0 Votes
    5 Posts
    734 Views
    Ruud SchmeitzR
    @Ekopalypse @Alan-Kilborn OK , thanks guys .
  • Replace string between quotes

    3
    0 Votes
    3 Posts
    948 Views
    Savvas KechagiasS
    Oh thanks! Seems like I have to study some RegEx :) Appreciate your answer!
  • v7.9 Accessing new shortcuts

    1
    1
    2 Votes
    1 Posts
    491 Views
    No one has replied
  • Match lines that don't contain any of the specified strings.

    regex
    4
    0 Votes
    4 Posts
    7k Views
    Jadian RadiatorJ
    @Terry-R Thankyou, “bookmarking” got it to work for me.
  • Macro language

    15
    1 Votes
    15 Posts
    3k Views
    TroshinDVT
    @Dario-de-Judicibus-0 said in Macro language: It looks like there is no way to get current file language and set new file to same langua. Editor.currentView.lang; [image: 1602766414387-screenshot_242.png] see, …\Notepad++\plugins\jN\jN\Doc\API\api.xml [image: 1602766599828-screenshot_243.png] есть множество примеров использования плагина и вики на гитхабе.
  • UDL numbers problem

    12
    2
    0 Votes
    12 Posts
    2k Views
    EkopalypseE
    @Ivan-Karpov No, what I meant refers to such an issue [image: 1602765621810-d22dd10b-82a0-4edd-8ef4-23896e3170c2-image.png] where the folding marker is out of sync with the code block.
  • Bug in macro recording

    10
    0 Votes
    10 Posts
    1k Views
    Dario de Judicibus 0D
    @Alan-Kilborn Here is, as requested: https://github.com/notepad-plus-plus/notepad-plus-plus/issues/9012