• How to avoid that new installation overwrites the customized run items

    Locked
    2
    0 Votes
    2 Posts
    1k Views
    Stefan TravisS

    Find the file “shortcuts.xml” in the folder where you’ve installed N++. Copy the file to somewhere else. After installing the new version of N++, copy it back, overwriting the new “shortcuts.xml” if there is one.

    The next time you run N++, your old shortcuts should be back.

  • Removing Blank Lines From All Pages

    3
    0 Votes
    3 Posts
    2k Views
    guy038G

    Hello, @gregory-heffner and @claudia-frank,

    Claudia, your regex may be simplified : Your don’t need to store the four line-breaks in group 1 with parentheses, as your replacement part is empty !

    So your regex becomes :

    (?-m)^\R{4}(?=\R{8})

    However, there’s a bug with that regex, when a second block of 12 blank lines exist, further in the current file and that you set the Wrap around option. Indeed, if you, manually, place the caret at beginning of that second block, it also selects the first fourth lines of that second block, before going back to the first four lines, at the very beginning of the file :-((

    I also tried with the regex, below, with the \A zero-length assertion, standing for the beginning of file, too, without more success ! As said in previous posts, these backward assertions are really not very well managed by our BOOST regex engine !!

    \A\R{4}(?=\R{8})

    Of course, as Gregory will certainly use the Find in Files dialog, with a search way, starting at the very beginning of each scanned file, this, normally, doesn’t matter :-))

    But, in conclusion, Gregory, if you’re quite sure that these 12 consecutive blank lines occur, only once, in each file, simply use the following regex :

    SEARCH ^\R{4}(?=\R{8})

    REPLACE : Leave EMPTY

    Notes :

    The \R syntax represents any single line break ( \r\n in Windows files, \n in Unix files and \r in Mac files )

    So this regex looks for 4 complete blank lines, included the first one, due to the ^ symbol, which, usually, stands for a beginning of line.

    With the condition ( because of the look-ahead feature (?=\R{8}) ) that it followed by a range of 8 complete blank lines !

    Remark : During tests, just check the Wrap around option !

    Best regards,

    guy038

  • All open files are gone

    Locked
    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • Failed to save file. Not enough space on disk to save file?

    Locked
    2
    0 Votes
    2 Posts
    9k Views
    Sonny de WitS

    Looks like it’s already been fixed in 7.4.1!

  • Size of the white space symbol in version 7.4

    3
    0 Votes
    3 Posts
    2k Views
    rddimR

    Also see here topic 13775

  • 0 Votes
    3 Posts
    4k Views
    rddimR

    Take a look at https://ivan-radic.github.io/udl-documentation/, it may be help you

  • Updates for N++ reverts plug-in manager to previous version

    4
    0 Votes
    4 Posts
    2k Views
    TaomynT

    Apologies, I never got alerts for this being replied to for some reason, but as I saw that N++ v7.4 and now v7.4.1 both still revert the plug-manager back v1.3.5 I would come and check.

    The NppFTP seems to be fine though so not sure what happened.

  • How can I use CS-Script to compile and run C#?

    Locked
    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • improments about Notepad++' font

    3
    0 Votes
    3 Posts
    2k Views
    Ion SaliuI

    @Claudia Frank:

    You do that in Photoshop, right? That’s exactly what the OP wanted!!!

    So, you select the text where you want to change the font… voilà! Photoshop does it!

    What are the procedures in Notepad++ for changing the font in the same document… going back and forth in ‘Style configurator’ (if that would ever work)?

    Ion Saliu
    “A good man is an axiomatic man; an axiomatic man is a happy man. Be axiomatic!”

  • Bug with Context menu

    3
    0 Votes
    3 Posts
    2k Views
    Виктор БукреевВ

    DSpellCheck - bad plugin found.

    Thanks Claudia!

  • Request: "Yes to all" when open files are changed

    5
    1 Votes
    5 Posts
    3k Views
    Scott SumnerS

    @Navin-Agarwal

    Report an issue or make a feature request here: https://github.com/notepad-plus-plus/notepad-plus-plus/issues/

    …to do it officially

    Best to see if it already exists first!

  • Vertical scroll bar disappears in some documents

    Locked
    4
    0 Votes
    4 Posts
    2k Views
    nic arbN

    Thanks Claudia, I found the solution straight away but was prevented by the system to post it, since I am a newbie.

  • Hide/Show Folder Margin version 7.4

    Locked
    2
    0 Votes
    2 Posts
    1k Views
    Claudia FrankC

    @Matej-Trnovec

    I assume it isn’t there because it is normally handled by the current lexer in use.
    A plugin which exposes the scintilla api like python script, lua script, nppexec…
    can be used to hack into this. Let me know if you want to go this way
    and whether you use one of the mentioned plugins already.

    Cheers
    Claudia

  • 64bit notepad++ fails to save a new document

    3
  • Font rendering in the windows 10 creator update

    5
    0 Votes
    5 Posts
    5k Views
    Stefan Peter WolfS

    Microsoft fiddled with the fonts – in the German support section, a Microsoft person suggested that someone opens a ticket in their FeedbackHub and they did. If enough people vote for that ticket, Microsoft will eventually look into this, so please vote this up: https://aka.ms/O4qeld. Here’s the original discussion (in German): https://answers.microsoft.com/de-de/windows/forum/windows_10-start/creators-update-1703-courier-new-schriftart-font/c6a91f0f-a1ee-45f1-89b9-34ec59d06743

  • Replace Notepad.exe

    11
    1 Votes
    11 Posts
    7k Views
    Scott SumnerS

    @Claudia-Frank

    Ah, at some point I must have unmapped F1. Looking at a default install, F1 is tied to “About Notepad++”. Activating “About Notepad++” via the mouse (on the ‘?’ menu) (with random highlighted) invokes the Easter Egg functionality, so it appears it is tied to that function rather than only the keystroke.

  • Cannot fully disable auto-indent

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    Claudia FrankC

    @niente0

    try starting without plugins loaded (either by using the -noPlugin switch or
    by renaming the plugin directoryx temporarily).

    If this solves the issue than one of your plugins is causing it.

    Cheers
    Claudia

  • Difference in symbols between Notepad++ and Windows Notepad

    2
    0 Votes
    2 Posts
    2k Views
    Claudia FrankC

    @Jesse-Sipple

    you should get the same result if you use the
    same encoding and same font which is used in MS notepad.

    If this isn’t the case, can you upload that file?

    Cheers
    Claudia

  • Replace "intro" for "space" in a selected text

    5
    0 Votes
    5 Posts
    3k Views
    alcx112A

    You are right!
    I forgot something like that. I did itagain paying attention to those details and the Macro works!
    Thank you very much! :D

  • Help with extended search/replace

    5
    0 Votes
    5 Posts
    3k Views
    Matteo ColomboM

    @Claudia-Frank
    @guy038

    Thank you so much I wanted this a lot!

    Cheers,
    Matteo.