• [CR][LF] colour not following settings

    Locked
    4
    2 Votes
    4 Posts
    2k Views
    glennfromiowaG

    @Scott-Sumner I sometimes use it to verify that the lines end where they look like they end, and not off the page to the right. I suppose I could use the Show White Space and TAB option to do this, but unlike some others, I don’t think the White Space display characters are big enough. :)

    The other reason I sometimes turn it on (besides your use of verifying mixed line endings) is when I have Word Wrap on, and even with the Show Wrap Symbol on, it helps me distinguish more easily where the end of the line is. I don’t keep it on all the time, but I guess the way it currently displays (as opposed to White-on-Orange, which would be hideous!) doesn’t bother me all that much, as I often forget to turn it off when I’m done. Ah, perhaps our grandchildren will be able to easily configure all aspects of their favourite editor.

  • Eclipse theme

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    Claudia FrankC

    @cha-w

    take a look at one of the other themes (Settings-Style Configurator), choose the one which matches best and modify it be selecting the language Java and changing the colors of the different styles assigned.

    Cheers
    Claudia

  • Session snapshot lost after HDD run out of space.

    Locked
    1
    0 Votes
    1 Posts
    818 Views
    No one has replied
  • Install Compare plug-in?

    Locked
    3
    1 Votes
    3 Posts
    108k Views
    pnedevP

    Hello @TS-ST ,

    Go to here https://github.com/pnedev/compare-plugin/releases/tag/v2.0.0 and download Compare plugin for your platform (for example for 32-bit get https://github.com/pnedev/compare-plugin/releases/download/v2.0.0/ComparePlugin_v2.0.0_x86.zip).

    Then manually extract the zip contents and copy them to your Notepad++ install folder -> plugins sub-folder.

    BR

  • Wrap at 512 Characters

    6
    0 Votes
    6 Posts
    3k Views
    Chad NewmanC

    Thanks for everyone’s help. At the end they added crlf to the end of the record. Make it much easier.

  • Notepad++ v7.5.2 is detected as Trojan

    Locked
    7
    1 Votes
    7 Posts
    9k Views
    David TeeD

    @Claudia-Frank I downloaded from it official site as .exe file and with every programs I use I always zip it with winrar and keep them as backup. I can’t install v7.5.2 at all. I also had submitted a report about this to Malwarebytes as well.

  • Notepad++ 7.5.2

    Locked
    3
    0 Votes
    3 Posts
    2k Views
    Tobbe WilsonT

    @Scott-Sumner
    Well, look at that, if you know where to look it’s easy to find!
    Thank you very much for pointing me in the right direction.

  • Add a zero

    Locked
    2
    0 Votes
    2 Posts
    1k Views
    Joan Graham-ParkerJ

    Don’t worry, I worked it out.

  • UDL - Numbers customize

    Locked
    2
    0 Votes
    2 Posts
    1k Views
  • Notepad text lost? Transfer help

    Locked
    3
    0 Votes
    3 Posts
    2k Views
    Гурд ГурдГ

    press keys Win+R then write\paste
    CMD

    Type in cmd:
    tree c:\ | more

    If your windows.old is not a file but a catalog\folder (I don’t remember), do
    to write file names of c:\windows.old* and its subfolders containing “MICROSOFT”:
    dir c:\windows.old /s /b | find /i “MICROSOFT” >> %USERPROFILE%\DESKTOP\LOSTFILES.txt

    also to output in console all file names in that catalog recursively
    (recursively - i.e. all folder tree)
    for /R c:\windows.old %R in (*) do @ECHO %R

  • "always use NPP with" option stopped working..

    Locked
    2
    0 Votes
    2 Posts
    1k Views
    bk0908B

    here is what do,

    right click on the txt file Open with choose another app (as npp doesn’t appear in the list) look for another app on this PC (always use this app) is checked, browse to NPP folder and open “notepadd++ application” file that starts the application nothing happens… just comes back to the explorer
  • 0 Votes
    5 Posts
    4k Views
    Viktoria OntapadoV

    Hello @guy038,

    I was hoping you could check this topic.

    Thank you very much for your creative solution, I really appreciate it.
    I’ve already tested it with my other lists and it’s working like a charm.

    Have a nice week,
    Viktória

  • Macro of function to capitalize all words in selection

    Locked
    9
    0 Votes
    9 Posts
    4k Views
    Jim KolbJ

    @Claudia-Frank
    Thanks for the info.
    I updated Notepad++ to v7.5.1 and now I have lots of options! :)

    Sorry it took so long to reply…
    Have to wait 20 minutes between posts because I’m new with no reputation. :)

  • Remove everything outside of string including string

    13
    0 Votes
    13 Posts
    5k Views
    Scott SumnerS

    @guy038

    I’m guessing you don’t check it very often (hence this posting), but I just sent you an email (to your gmail account) regarding this thread with a “new” technique in it; if it works out as an approach (let me know what you think), we’ll share it here.

  • Replacing a column of numbers with clipboard data

    Locked
    2
    0 Votes
    2 Posts
    1k Views
    guy038G

    Hello, @xerkon,

    As you said :

    I’d like to be able to copy 2 columns from a spreadsheet

    I suppose that your selected bloc of cells ( 6 rows x 2 columns ), pasted in a new tab, within N++, is displayed, as below, where any number of the second column is simply separated, from its associated number of the first column, by a tabulation character ( \t ) !

    1.25 0.25 2.5 0.5 3.25 1.25 4.5 1.5 5.25 2.25 6.5 2.75

    If so, the simple regex S/R should do the job :

    SEARCH (?-s)^(.+?)\t(.+)

    REPLACE <controlpoint t="\1" val="\2"/> , with a space character, before the string val

    OPTIONS Wrap around and Regular expression set

    And you’ll get the text :

    <controlpoint t="1.25" val="0.25"/> <controlpoint t="2.5" val="0.5"/> <controlpoint t="3.25" val="1.25"/> <controlpoint t="4.5" val="1.5"/> <controlpoint t="5.25" val="2.25"/> <controlpoint t="6.5" val="2.75"/>

    If you prefer separate the two values by a tabulation character, just change the Replace box, as belwo :

    REPLACE <controlpoint t="\1"\tval="\2"/>

    This time, you would obtain :

    <controlpoint t="1.25" val="0.25"/> <controlpoint t="2.5" val="0.5"/> <controlpoint t="3.25" val="1.25"/> <controlpoint t="4.5" val="1.5"/> <controlpoint t="5.25" val="2.25"/> <controlpoint t="6.5" val="2.75"/>

    Best Regards,

    guy038

  • Macro not working

    Locked
    10
    0 Votes
    10 Posts
    5k Views
    John McCarthyJ

    Interestingly, after a re-install, it’s working! Hooray!

    I am rurally located, at the end of a long and old copper line, and I have a seriously flaky connection, so corrupted downloads happen a lot. Many MP3 downloads are totally messed up.

    Now that this is working, I can look at N++ as a serious contender to replace UE, which was becoming very slow at startup.

    Thanks to everyone for the help.

    I don’t think you can complain about that not being user-friendly. Well, you can, but no one will listen

    All I’m asking is that the documentation explains how it works. Then it becomes ‘user friendly’.

  • All codes deletes automatically, plz helpl me to recover it

    Locked
    3
    0 Votes
    3 Posts
    1k Views
    Randhir KumarR

    @Scott-Sumner
    yes, the file is totally empty with a length of zero size. how it happens and why i don know. Even the file have size of 0 byte.

  • 0 Votes
    5 Posts
    2k Views
    Brent BeachB

    Yes! Windows key and cursor left popped up the notepad window! Now why didn’t I think of that?

    Thank you, NP community.

    I have been using NP exclusively for years. Love it.

  • Can't seem to get functionList.xml to recognize my UDL

    3
    0 Votes
    3 Posts
    1k Views
    AzannahA

    Thanks, @MAPJe71 - that worked! You’r comment style for RegEx is also helpful.

    Best regards

  • Linus, used with Crossover (the people who assist Wine) - text problem

    Locked
    3
    0 Votes
    3 Posts
    1k Views
    Meta ChuhM

    @Andrew-Ampers-Taylor

    maybe this is of help

    open the desired file in notepad++
    in the menu bar, click on view > show symbol > show all characters
    (this will show you all line endings like [CR][LF])

    then, if you select edit > eol (end of line) conversion > windows (CR LF) from the menu bar, it will convert all paragraphs (line endings) to the windows format (or mac or linux if you choose so)