• N++ 7.5.1 patch for Clojure by modifying Lisp model.

    4
    0 Votes
    4 Posts
    3k Views
    linpengchengL

    Clojure can use Lisp lexer.

  • Save As File name and folder navigation

    Locked
    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • voluntary registration ?

    Locked
    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • Updater Does Not Work

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    dailD

    Quote from the Notepad++ website:

    Auto-updater will be triggered in few days if there’s no critical issue found.

    There is usually a delay to make sure new versions are stable before being pushed out to users. If bugs are found then new releases may come out before the updater will trigger. The most recent version the updater will find is v7.4.2.

  • Bug with special caracts

    Locked
    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • Blank sheet is printed on dark background themes

    Locked
    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • Feature Request: List of Regex Rules to use in Search

    Locked
    7
    1 Votes
    7 Posts
    3k Views
    Jim DaileyJ

    @Daniel-Vonderheide

    By no means ideal, but maybe you could keep your regexes in a file and then copy and paste them from there. Perhaps a macro could make this less painful to use.

  • Word's separation marks bug for Armenian

    2
    0 Votes
    2 Posts
    2k Views
    Alex UrsA

    To reproduce.

    Just copy-paste the line below to the program.
    “Good morning՝«»։․֊ all.” Make a double click on the word “morning”. You will see that 6 chars after the word also selected.
    PS.
    Make a double click on the word “morning” in Chrome or Edge, right here.
    You will see that just “morning” is selected.
  • Bug with inside border

    3
    0 Votes
    3 Posts
    2k Views
    iripuI

    It’s still not fixed in latest version 7.5.1

  • Offset treats tabs as multiple tokens when calculating the offset/col?

    Locked
    3
    0 Votes
    3 Posts
    2k Views
    Derek AltamiranoD

    Useful suggestion, which is what I did. However this is annoying because I have to remember to go back and change the tab setting back when I am done. I think it might be useful for this to be a configurable setting… Either by file type or even better as a more general setting that could be toggled on or off.

  • How do I Set up custom Language

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    Jim DaileyJ

    @t-md Try the Language -> Define Your Language menu item. There is a link there to some documentation.

  • New Features required

    Locked
    1
    -5 Votes
    1 Posts
    957 Views
    No one has replied
  • Find in Files datefilter

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    No one has replied
  • [suggestion] add "Find Previous" button next to "Find Next"

    Locked
    3
    0 Votes
    3 Posts
    3k Views
    Wolf WarW

    lol yea
    I wasn’t aware that version 7.4 had it :)

  • Search open file name

    Locked
    3
    0 Votes
    3 Posts
    6k Views
    aviveyA

    Thanks Scott - that’s exactly like what I was looking for.

    Unfortunately, it appears to crash when I open new docs :(

  • The << Find button has returned...sort of...and has brought friends

    Locked
    3
    3 Votes
    3 Posts
    3k Views
    Scott SumnerS

    @guy038 said:

    I’ve just noticed one bug. Luckily, after checking on official versions, that’s NOT due to your version !

    I agree with your findings. The trouble seems to come from this section of the source code:

    CharacterRange cr = (*_ppEditView)->getSelection(); //The search "zone" is relative to the selection, so search happens 'outside' int startPosition = cr.cpMax; int endPosition = docLength; if (pOptions->_whichDirection == DIR_UP) { //When searching upwards, start is the lower part, end the upper, for backwards search startPosition = cr.cpMax - 1; endPosition = 0; }

    The line causing the trouble is startPosition = cr.cpMax - 1;

    When the caret is here (at the position marked by the vertical bar): abcabcabcabcABC|abcabc and the backwards search for “abc” (without regard to case) is invoked, the -1 in the line above is what causes the search to begin at this position: abcabcabcabcAB|Cabcabc instead of at the correct starting point. Thus, the first match that is found is the last “abc” just before “ABC” (as @guy038 indicated), instead of “ABC”. This supposes that Scintilla’s searchInTarget() function (called later than the above snippet of code) won’t find matches that begin inside the specified range and extend outside the range.

    Unfortunately, I don’t see an easy fix to this. If the line is changed to be startPosition = cr.cpMax; then “ABC” is correctly found as the first backward-search match, but repeated presses of the <<Find (my N++ build) or Find Next (real N++ 7.5) button will not move the caret, i.e., it will be stuck on “ABC” forever, instead of finding each preceding “abc” match in turn.

  • Need spell checker - notepad ++ 7.5 - 64 bit

    Locked
    3
    0 Votes
    3 Posts
    12k Views
    Aj AnningA

    I’m on Windows 10 by the way. I had done all these steps, however I was moving the dll into the 32 bit ++ dir. (didn’t realize I still had 32 bit ++ installed, I still should have known to be in Program files and not the (86) dir). Ok thats done, and restarted notepad ++., it didn’t work untill I installed a dictionary…makes sense.
    currently it is Using the Hurspell library as opposed to Aspell.
    Which is better?

    I’d like to add in other plugins, is there a good site which has all the 64 bit plugins?

    I also do not have the plugin manager, where can I find this?

    Thanks Much

  • Tab replaced by variable spaces

    Locked
    3
    0 Votes
    3 Posts
    2k Views
    Frank AnciauxF

    Many thanks Scott.
    I should have glue on my eyes :)
    It’s OK !

  • Network drives

    5
    0 Votes
    5 Posts
    4k Views
    gerdb42G

    Mapped Network drives only exist in your user’s default context. When you start an Application with “Run as Administrator” it runs in a different context and thus doesn’t see your mappings.

    Either use UNC Pathes (like \\yourserver\yourshare) or re-map your drives from a command window running as administrator (command: net use x: \\yourserver\yourshare)

  • Why is MS distributing Notepad++ 7.5?

    Locked
    1
    0 Votes
    1 Posts
    2k Views
    No one has replied