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
    • Thorin SchmidtT

      Confusing/Frustrating folding behavior

      Watching Ignoring Scheduled Pinned Locked Moved Help wanted · · · – – – · · ·
      8
      0 Votes
      8 Posts
      436 Views
      Thorin SchmidtT
      @mpheath Thanks for this suggestion. It seems to be the simplest solution. A bit of an overkill since it would only be needed for my Python stuff, yet I like keyboard shortcuts, growing up on DOS and all. Thank You! I really appreciate the help. :)
    • M

      Drag and dropping lines between split view documents?

      Watching Ignoring Scheduled Pinned Locked Moved General Discussion
      3
      0 Votes
      3 Posts
      65 Views
      CoisesC
      @Michkovy said: Having recently discovered that I can drag and drop lines between split view documents, I was wondering if the behavior can be changed from copying/pasting the text to cutting/pasting it. I’ve looked through the options but found nothing. Is there something hidden away setting I might have missed? Just trying it, it looks like holding down the Alt key works. You can press it before or during the drag, so long as it’s down when you release the mouse. If you press it after you’ve over the other view, but before you release the mouse, you’ll see the plus sign on the drag icon disappear.
    • chtaylo3C

      Parser/Lexer Plugin for FIX protocol logs

      Watching Ignoring Scheduled Pinned Locked Moved Notepad++ & Plugin Development
      2
      0 Votes
      2 Posts
      68 Views
      PeterJonesP
      @chtaylo3 , You only need to post in the “Support for Plugins Admin & NppPluginList” topic if there’s a feature or bug with the Plugins Admin and the list DLL itself. If there are issues with your PR to add it to NppPluginList, those will be discussed in the PR itself – and it looks like yours has been accepted already. If you want to just announce your new plugin, you can just create a new Topic in the Plugin Category to tell us about it. Hence, I am moving your post to its own Topic. And congrats on creating a lexer plugin!
    • C

      unsaved change star symbol

      Watching Ignoring Scheduled Pinned Locked Moved Help wanted · · · – – – · · ·
      2
      1
      0 Votes
      2 Posts
      124 Views
      X
      @CodeBiene said: MenuIcons (2.0.7) This is most likely not a N++ issue but that plugin one: https://github.com/notepad-plus-plus/notepad-plus-plus/issues/16798 https://github.com/notepad-plus-plus/notepad-plus-plus/issues/16867 @CodeBiene said: files are prefixed with a star “*” This is not a N++ feature but that plugin one. Seems it causes more problems than benefits: https://github.com/francostellari/NppPlugins/issues/71#issuecomment-4321741836
    • Sylvester BullittS

      Can't Open URL in HTML Link

      Watching Ignoring Scheduled Pinned Locked Moved General Discussion file open issue html
      5
      0 Votes
      5 Posts
      213 Views
      PeterJonesP
      @Sylvester-Bullitt said: Any idea when the next release will be out My guess: sometime in the next few weeks to a month or so – most of the time, that’s the cadence of the release schedule. But it all depends on when the developer thinks enough things have been added/fixed to warrant a new release. If it annoys you a lot, you can manually download and run the installer for an older version, and use that version which behaves as you want while wait to upgrade again until after you see the next version announced
    • AGoh2019A

      Print Quality TERRIBLE & Non very useful

      Watching Ignoring Scheduled Pinned Locked Moved General Discussion
      4
      0 Votes
      4 Posts
      233 Views
      X
      @PeterJones said: What do you mean by “Can’t see anything”. Maybe: https://github.com/notepad-plus-plus/notepad-plus-plus/issues/15702
    • Kendall DeMottK

      Config file - Not Seen

      Watching Ignoring Scheduled Pinned Locked Moved Help wanted · · · – – – · · ·
      2
      1
      0 Votes
      2 Posts
      119 Views
      PeterJonesP
      @Kendall-DeMott , The installer shouldn’t lose your settings – it tries hard to not overwrite – but not impossible. But after it’s installed, it shouldn’t lose all the settings. One guess is that the config.xml file doesn’t actually have normal write permissions, so when you make all the changes inside Notepad++, it tries to save the settings, but cannot – I would have thought it would prompt you for that, but maybe not. Use Explorer to go to %AppData%\Notepad++\, and right click on config.xml, and check the permissions, to make sure your normal user has write permission to the file; and also make sure you aren’t running Notepad++ As Admin – it would have Administrator in the title bar, and list it as Admin Mode: ON in the ? > Debug Info – because maybe your system is set up so Admin cannot write to your AppData directory. Another guess is that you have two copies of Notepad++, and when your settings are changing, it is because it’s using a different copy of Notepad++, pointing to a different config location. Use Windows search to look for notepad++.exe, and see if it finds more than one copy. (If you have multiple drives, make sure you check them all.) I thought or was told that the the app’s preferences etc. loaded from the Session file? Nope. Settings are stored in config.xml. The list of open files is stored in session.xml I can’t remember where you can change the setting or edit a line so more items are remembered in the Find What window, can you please tell me how to set it to (12) It’s a Preference for Advanced Users, which can only be changed by editing nbMaxFindHistoryFind and similar attributes, as described in the User Manual. When manually editing config.xml, you have to follow the steps in the Editing Config Files section, reading about the differences in how you have to treat config.xml because of its unique status in Notepad++'s inner workings.
    • 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
      7
      4 Votes
      7 Posts
      3k Views
      dr ramaanandD
      @guy038 This method can be used to skip a string and replace part of a shorter, similar string, even when it precedes the long string. So, if the input text is:- abc abcdefghijklmnopqrstuvwxyz We can get an output like this:- ABC abcdefghijklmnopqrstuvwxyz by using this in the Find and Replace fields respectively with the “matches newline” box unticked (unchecked): FIND (?-s)abc.*xyz(*SKIP)(*F)|abc REPLACE \U$0 I am posting this here for the benefit of people who land on this page after searching online for something similar Explanation: Using $0 in the replace field is for replacing everything that is found while searching, which in this case is abc but due to the \U preceding the $0, it is replaced with the same in uppercase as ABC.
    • Lance MarchettiL

      A Workaround for 0xFF and NUL bytes to Hex

      Watching Ignoring Scheduled Pinned Locked Moved Help wanted · · · – – – · · ·
      1
      0 Votes
      1 Posts
      66 Views
      No one has replied
    • Scott NielsonS

      How do I find some text but skip some other slightly different text?

      Watching Ignoring Scheduled Pinned Locked Moved Help wanted · · · – – – · · ·
      23
      0 Votes
      23 Posts
      4k Views
      dr ramaanandD
      @Scott-Nielson @guy038 has given a good explanation of the (*SKIP)(*FAIL) method at https://community.notepad-plus-plus.org/topic/26812/generic-regex-how-to-use-the-couple-of-backtracking-control-verbs-skip-fail-or-skip-f-in-regexes/5 - in fact I recommend everyone who lands on this page after searching online, to read that explanation and understand it!