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
    • M

      Drag and dropping lines between split view documents?

      Watching Ignoring Scheduled Pinned Locked Moved General Discussion
      3
      0 Votes
      3 Posts
      46 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.
    • 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.
    • chtaylo3C

      Parser/Lexer Plugin for FIX protocol logs

      Watching Ignoring Scheduled Pinned Locked Moved Notepad++ & Plugin Development
      2
      0 Votes
      2 Posts
      61 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!