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
      4
      0 Votes
      4 Posts
      208 Views
      M
      @PeterJones said: So, sorry, I don’t know of a way to do that. But I am now curious if someone else knows of a way, or if one of the codebase experts knows why it might not be possible (or whether it’s a feasible feature request or not). (I’d apologize for providing a ‘non-answer’ as my answer, when you haven’t gotten a ‘real answer’ first… but I wanted to caution future respondants to not jump to the same conclusion I did at first without actually giving it a try for themselves.) No worries I like to see how people tackle problems. And with a software as vast as N++ where I know only a small percentage of all the functions, even a non answer shows me something new most of the times. Coises answer does the trick. In an ideal world I’d like a way to switch the behaviour so Alt+drag copies, but for all intents and purposes the solution works for me.
    • AGoh2019A

      Print Quality TERRIBLE & Non very useful

      Watching Ignoring Scheduled Pinned Locked Moved General Discussion
      6
      0 Votes
      6 Posts
      342 Views
      PeterJonesP
      @karl3200 said: I agree. The print is too faint and red text is almost invisible. I guess people aren’t understanding my point: making a vague complaint is unhelpful. Provide details, and maybe somebody can do something about it. I asked @agoh2019 for more information not because I couldn’t make guesses similar to what @xomx pointed out in the existing issue – because, obviously, I pointed out some of the same guesses in my post here that were in that issue – but because more details means we can help you better with your exact circumstances. So, I will be more clear with @karl3200 : under what circumstances? What theme are you using? What are your print setttings (Settings > Preferences > Print, especially the Color Options)? Your theme influences what is seen in a printed version. The print settings influence what is seen in the printed version. If you describe your situation, and your exact current results, and your desired alternative results, we might be able to recommend a group of settings that will work for you – or it might give someone enough information to define a new Color Option choice that might work better for you and other people.
    • Michael VincentM

      userDefinedLang IP address parsing

      Watching Ignoring Scheduled Pinned Locked Moved Help wanted · · · – – – · · ·
      8
      0 Votes
      8 Posts
      2k Views
      L
      Hello, Trying to do IPv6 in Syntax Highlighting for FortiOS. As I wanted to have a different font color for the dots and the colons in the IP address, I use those as operators, and have 0-9 A-F (Uppercase A-F) as keywords set to prefix. This only works if you’re building configs though, and will go back to default if there are lower case a-f hex values if you do a copy/paste type of thing in NPP. I chose to opt for uppercase A-F since all FortiOS words are case sensitive and must be lowercase(Not strings/objects mind you). You can, while configuring the device, set IPv6 addresses with these uppercase hex values. Note: You can specify objects without string delimiters, but I find that to be bad form. And if you include grep filtering in NPP, these keywords could be exposed. Keywords List Group Prefix Mode: Checked 0 1 2 3 4 5 6 7 8 9 A B C D E F Operators 1 . : /
    • L

      Unicode 'ÿ' , problem converting to Hex 'FF'

      Watching Ignoring Scheduled Pinned Locked Moved Help wanted · · · – – – · · ·
      38
      1
      1 Votes
      38 Posts
      11k Views
      PeterJonesP
      ( @Lance-Marchetti , you originally posted this as a separate topic: I merged it into the original, so it’s easier for people to follow the conversation. )
    • donhoD

      v8.9.7 Release Candidate will be available in about one week

      Watching Ignoring Scheduled Pinned Locked Moved Announcements
      1
      6 Votes
      1 Posts
      200 Views
      No one has replied
    • Elin PetterssonE

      Locking file from other editing while opened in Notepad++

      Watching Ignoring Scheduled Pinned Locked Moved Help wanted · · · – – – · · ·
      11
      0 Votes
      11 Posts
      10k Views
      shouldersS
      I requested here: https://github.com/notepad-plus-plus/notepad-plus-plus/issues/17508 I then made a plugin here: https://github.com/shoulders/npp-exclusive-file-lock Thanks
    • 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.