• Sort tabs by creation date

    6
    1 Votes
    6 Posts
    3k Views
    Daniel TomberlinD
    @alan-kilborn, I reviewed this and you’re correct. If those numbers are the same, that’s where the cursor is located (no selection made) and if it differs, depending where one starts the selection from top to bottom or vice versa will determine what those numbers are between these parameters.
  • Styles for *.java language (android studio)

    7
    0 Votes
    7 Posts
    2k Views
    EkopalypseE
    @guy038 Yes, I know, and I usually do, but for whatever reason I added this space this time. And worse, I didn’t realise it when I posted it.
  • 0 Votes
    3 Posts
    2k Views
    Alan KilbornA
    @majora__z @Ekopalypse is right. "Session"s are what you want. Notepad++ has some support for sessions but probably the Session Manager plugin meets advanced session needs better.
  • Latest Version

    3
    1
    0 Votes
    3 Posts
    536 Views
    PeterJonesP
    @mre819 said in Latest Version: Does the official website have the latest version that cannot be automatically updated from the client? The official website always has the most recent full release, and a selected history of releases going back through time. As of right now, v8.3.2 is in release-candidate mode, which means it hasn’t been made an official release yet, but is likely to be in the next few days or weeks; until that time, I won’t be listed in the downloads section of the official website. v8.3.1 was the most recent full release, and thus why it’s on the website. The last release to have “auto-update” triggered (and thus the most recent release that ?>Update Notepad++ or the auto-update feature will tell you about) is v8.2.1, because that was the last release that didn’t have critical regressions found soon after being released. Don will usually post a reply to his Announcement topic when a released version has triggered auto-update, like this reply for v8.2.1. For more about the upgrading process, see the Upgrading section of npp-user-manual.org
  • new version not working

    5
    0 Votes
    5 Posts
    640 Views
    tejas parmarT
    i will provide more information give me some moments
  • Find/Replace with Regex and Wildcard in the middle of the strings

    19
    0 Votes
    19 Posts
    15k Views
    Lycan ThropeL
    @dustin-mcmillan , Unless your text changes anymore, this should be what works for what is assumed to be the text you provided: Search: {{.+;\/\*(\d+-\d+-\d+).* Replace: $1 regular regex, do not check the checkbox . equals newline
  • how to avoid the bars divide the scrollable area

    3
    0 Votes
    3 Posts
    574 Views
    Laszlo BotkaL
    @peterjones Thank you! I found the Web Annoyances Ultralist that I imported into uBlock Origin Firefox addon a while ago, that’s causing this. After deleting Web Annoyances, the scrolling works correctly.
  • 0 Votes
    3 Posts
    640 Views
    Alan KilbornA
    @perspector-gantap Also a better thing to do would have been to post in English.
  • Merge column-mode and multi-edit

    4
    0 Votes
    4 Posts
    700 Views
    EkopalypseE
    @bernhard-ege Happy to help.
  • Functions Proposition: Autotext & Window positioning

    4
    0 Votes
    4 Posts
    667 Views
    Iton HornI
    @alan-kilborn said in Functions Proposition: Autotext & Window positioning: Part 2: Intriguing. Recently I developed a script that would “maximize” the N++ window across two monitors, which is similar. I mean mainly not only maximizing but any other position and size of the Notepad++ window.
  • Functions list does not work for (X)HTML files

    5
    0 Votes
    5 Posts
    989 Views
    jabcreationsJ
    @michael-vincent I have mountains on top of my mountains of work; I just don’t have it. I’ve got more than half a dozen dumbshit browser bugs that are extremely difficult to reproduce to report on top of my normal overflow of work. It’s just not happening at my end.
  • Request: Add higher resolution of Notepad++'s standard icon set

    6
    0 Votes
    6 Posts
    2k Views
    stephane352S
    Please bring back large standard icons. Colors make icons much faster to differentiate. Small icons are really straining my eyesight and I guess they are only OK on very low resolutions, which probably nobody is still using nowadays.
  • php autoCompletion (php.xml) parser

    2
    0 Votes
    2 Posts
    722 Views
    Valery BogomolovV
    I can provide you with all PHP function/method names (more than 8500 words), so you could add them in PHP language highlight, but I’ll need to run parser once again (~4 hours that burn my laptop) and write a script to extract names.
  • Unable to select auto suggestions

    4
    -1 Votes
    4 Posts
    743 Views
    Yeltsin ReyesY
    @alan-kilborn muchas gracias!
  • How disable auto select locale language

    8
    2
    0 Votes
    8 Posts
    2k Views
    L
    Hi, @bannovdaniil, if you search for ‘Advanced keyboard settings’ in your PC. Do you have the option ‘Let me see a different input method for each app window’ enabled? If so, you may want to try and disable it. It is the only thing I can think of…
  • Best way to find unmatched parentheses

    6
    0 Votes
    6 Posts
    32k Views
    Alan KilbornA
    Cross-link to THIS POSTING where related info is discussed.
  • Add a line

    5
    0 Votes
    5 Posts
    2k Views
    CJBC
    @peterjones Perfect, thank you! Saved me sooo much time.
  • 0 Votes
    3 Posts
    1k Views
    rdipardoR
    @steveogil, Plugins : BracketsCheck.dll ComparePlugin.dll CSScriptNpp.dll DSpellCheck.dll mimeTools.dll NppConverter.dll NppExport.dll XMLTools.dll You can check your plugin versions against the list I started here.
  • Suggestion: better autosave/backup system

    3
    0 Votes
    3 Posts
    652 Views
    Alan KilbornA
    @peter-sharps said in Suggestion: better autosave/backup system: I don’t save each tab in a separate file DUMB…DUMB…DUMB…
  • Search/Replace with REGEX capturing groups

    search & replace regex capturing group
    3
    0 Votes
    3 Posts
    25k Views
    Alan KilbornA
    @benevolent-deity said in Search/Replace with REGEX capturing groups: How can I use the content of a Regex capturing group in my replacement string when doing a search and replace with Notepad++? To use capture group 1, put \1 or $1 or ${1} in your replacement string. Similar for other numbered capture groups.