• Whitespace characters replacement

    Locked
    4
    0 Votes
    4 Posts
    2k Views
    Scott SumnerS

    @Omar-Gamelogic

    In that case, see the “View” menu -> “Show Symbol” submenu options. There you have:

    Show Whitespace and TAB
    Show End of Line
    Show All Characters

    If you set it to only “Show Whitespace and TAB”, then I think you’ll be happy with the result.

  • Delete all rows with a specific content occuring in a specific column

    4
    0 Votes
    4 Posts
    2k Views
    guy038G

    Hello, Markus-Ruhsam,

    Of course, it’s a bit late, by now, but here is a shorter regex, that works perfectly well !

    SEARCH (?-s)^(?=.{10}\.).+\R

    REPLACE EMPTY

    Et voilà !

    Notes :

    The first part (?-s) is an in-line modifier, which ensures that the dot meta-character will match only standard characters, even if you previously checked the . matches newline option

    From the beginning of line ^, the form (?=.{10}\.), also called a positive look-ahead, verifies if the condition Does exist a DOT character, in column 11, of the current line, is true.

    The important thing to remember about look-arounds is that, as soon as the condition is evaluated, the regex engine position is reset to the position before evaluating the look-around condition. So, in our case, to the position just before the first character of each line

    Consequently, if this condition is true, the following part of the regex .+ matches all the standard characters of the current line

    Finally, the \R syntax matches any kind of EOL characters ( \r\n ) in Windows files, ( \n ) in Unix files or ( \r ) in Mac files

    Now, as the replacement string is empty, that means that any complete line ( with a dot character at column 11 ) will be, automatically, deleted !

    Best Regards,

    guy038

  • Feature Request

    Locked
    2
    0 Votes
    2 Posts
    1k Views
    Scott SumnerS

    @Larry-Schulman

    Have you tried the 64-bit version? It can handle larger files…

  • UDL (User-defined language) request 2: extend number style

    6
    0 Votes
    6 Posts
    3k Views
    Mikhail NikitinM

    Well, I didn’t expect UDL to be capable of doing it at the moment, as far as I could read the documentation, but it might eventually enhance a constant literal rule from only covering a subset of ASCII numbers (e.g. +1,024.50 or 6.19e-23 won’t be matched either, afaik) to some more complex definitions, where the time definition might find its place :-)

  • Text Message backup conversion to readable format

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    Scott SumnerS

    @Billy-Dailey ,

    VERY wrong place to ask this question. Sorry.

  • UDL (User-defined language) request 4: variable string matching (HEREDOC)

    Locked
    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • UDL (User-defined language) request 3: rename groups

    Locked
    1
    0 Votes
    1 Posts
    934 Views
    No one has replied
  • Notepad+ 7.2 (32bit) Installation of Tidy2 (v 0.2) fails.

    Locked
    2
    0 Votes
    2 Posts
    8k Views
    Syamala TadigadapaS

    At https://sourceforge.net/p/notepad-plus/discussion/482781/thread/2eeba3f3/ I found a solution. I have downloaded the zip file https://github.com/downloads/davegb3/NppTidy2/Tidy2_0.2.zip. Expanding this zip folder has Tidy2.dll. I copied this Tidy2.dll file to C:\Program Files (x86)\Notepad++\plugins. Then I verified that this plug in is showing up in the nodepad++ menu.

    But I am interested to know 1. why it fails to install as a plugin from notepad++ menu? 2. Is there a solution than the above hack I mentioned?

  • UDL (User-defined language) request 1: embed XML

    Locked
    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • [FEATURE REQUEST] Keep (if any) registry value of Title

    Locked
    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • 0 Votes
    3 Posts
    4k Views
    brudersteinB

    Just to confirm what @MAPJe71 said, yes, this is official - they’re sponsoring the hosting of the list (the “why is this here” link was down for a few hours last night, apologies if you caught it at a time when it wasn’t available).

  • NEW FEATURE REQUEST *Nicknameable Tabs*

    Locked
    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • NAS no access

    Locked
    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • Problem w/ function list

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    MAPJe71M

    Confirmed, known issue applicable to most FunctionList parsers implementing classRange.
    No solution yet, but is being worked on.

  • Can't get the Style Configurator to work right. Forecolor not working

    Locked
    4
    0 Votes
    4 Posts
    2k Views
    MAPJe71M

    For what language?

  • how to create a new file as a copy of an existing file in Notepad++

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    PeterJonesP

    Does this do what you want?

    File > Open = news.php File > Save a Copy As = article.php
  • Small Request

    Locked
    3
    0 Votes
    3 Posts
    2k Views
    djixadinD

    But it doesn’t get added to the menu for me. I can only run it via keyboard shortcut.

  • Plz, help me to show function list codeigniter

    Locked
    9
    0 Votes
    9 Posts
    5k Views
    Khanh Minh93K

    @MAPJe71

    thank you MAPje71 and guy038

    npp working function codeigniter

  • NP++ minimizing on cut/paste, search, and most other actions.

    8
    0 Votes
    8 Posts
    8k Views
    alireza ashaniA

    The problem seems to persist, so please ignore my previous post.

  • bookmark line color

    Locked
    5
    0 Votes
    5 Posts
    5k Views
    dailD

    Oh, I see what you are saying now. :)

    AFAIK this isn’t configurable through any config file (although not a bad idea), but you can do it with a plugin. You can do this with PythonScript but I’m not familiar enough with it. LuaScript is more lightweight and easier to install.

    Install LuaScript via the Plugin Manager. Go to Plugins > LuaScript > Edit Startup Script Add the following to the script. -- This value is a hex color. NOTE: this is BGR values not RGB editor.MarkerBack[24] = 0xFF0000 -- Opacity between 0 and 255 editor.MarkerAlpha[24] = 128

    You can tweak this to whatever you want. When you restart N++ then it should work fine.