Community
    • Login
    1. Home
    2. Popular
    Log in to post
    • All Time
    • Day
    • Week
    • Month
    • All Topics
    • New Topics
    • Watched Topics
    • Unreplied Topics

    • All categories
    • DougK.AZD

      Ctrl-J (join lines) replaces LF with space

      Watching Ignoring Scheduled Pinned Locked Moved General Discussion
      8
      0 Votes
      8 Posts
      210 Views
      guy038G
      Hi, @dougk.az, @peterjones and All, Oh, yes, Peter, you’re perfectly right ! But I must be a little tired from this heat wave. Since June 22, in the room where my desk is, even with a fan, the temperature has usually been between 29 °C and 30.5 °C. It’s awful ! BR guy038 Oh ! Now, I also realized that @dougk.az never spoke about the form feed ( FF ) characters, of code \x0C but spoke about the line feed ( LF ) chars, of code \x0A As I said above : really tired by heat !!!
    • Jon FlemingJ

      NPPexec Tidy won't open html file.

      Watching Ignoring Scheduled Pinned Locked Moved Help wanted · · · – – – · · ·
      3
      0 Votes
      3 Posts
      51 Views
      Jon FlemingJ
      Thanks, your script works perfectly.
    • Claudia SvensonC

      How to auto-convert text (Umlaute) when changing file encoding from ANSI to UTF-8 BOM?

      Watching Ignoring Scheduled Pinned Locked Moved Help wanted · · · – – – · · ·
      3
      0 Votes
      3 Posts
      129 Views
      Claudia SvensonC
      @Coises funzt. Danke
    • H

      How do I reset back to the default Dark Mode style settings?

      Watching Ignoring Scheduled Pinned Locked Moved Help wanted · · · – – – · · ·
      2
      0 Votes
      2 Posts
      34 Views
      PeterJonesP
      I tried to tweak the style settings even more, but really messed it up and now can’t see the cursor position, read the text on the current line, or the anything in the selected text. And now NotePad++ is impossible for me to use any more. How do I reset Dark Mode’s settings to their ‘factory’ settings? If there is a link or button to do this on the style dialogs areas or the built-in Help screen, I haven’t found it? There is no button. People wanting a “Factory reset” is a rare thing (you’re the first that I’ve ever noticed asking for it… though I can see why it would be nice) Would reinstalling NotePad++ fix this? No, because reinstalling Notepad++ doesn’t change the files that are in %AppData%\Notepad++, where your customizations are stored. (assuming normal installation) But the good news is, that’s the solution, too. When you customize the Dark Mode stylings, they end up in %AppData%\Notepad++\themes\ as *.xml. So if you exit Notepad++, then use Windows Explorer and paste in that directory (don’t worry, Windows knows to do “the right thing” with the %AppData% portion, so you can literally copy the entire %AppData%\Notepad++\themes\ and paste it in the Explorer location bar), then you can delete DarkModeDefault.xml from that directory (and any others in there that you want to reset). When you run Notepad++ again, it will use the copy of DarkModeDefault that ships with Notepad++, and if you make any customizations, it will save a new copy in your AppData location. (If you have a non-normal installation, things will have to be different, and you’ll have to share your ?-menu’s Debug Info with us for us to be able to tell you where the files will be.) Oh, and if after this issue is solved, how do I set the general screen background to the the darkest black rather than the sort of gray that it was at when I chose Dark Mode, before I wrecked that? Settings > Style Configurator > Language: Global Styles > Style: Default Style, then click on the background color box, and select the true black: [image: 1782918128223-703bc95d-474a-41b9-b4ac-7c6e610e62ed-image.jpeg]
    • AGoh2019A

      Print Quality TERRIBLE & Non very useful

      Watching Ignoring Scheduled Pinned Locked Moved General Discussion
      7
      0 Votes
      7 Posts
      734 Views
      K
      @vvPeterJones I switched Settings>Preferences>Print from “No background color” to “Black on white” and the print is much better.
    • guy038G

      Generic Regex : How to use the couple of "Backtracking Control" verbs (*SKIP)(*FAIL) or (*SKIP)(*F) in regexes

      Watching Ignoring Scheduled Pinned Locked Moved Blogs
      8
      4 Votes
      8 Posts
      3k Views
      dr ramaanandD
      Even if the shorter, similar string was after the longer string, the same Regular Expression (Regex) can be used to get the same result:- Input abcdefghijklmnopqrstuvwx abc Output abcdefghijklmnopqrstuvwx ABC Explanation: The abc.*xyz preceding the (SKIP)(*F) in the Regex helps skip the long string starting with abc and ending with xyz and matches the other abc in the shorter, similar string! By using that Regex (mentioned in my previous post, just above this), the abc after the (SKIP)(*F) is matched, found and replaced.