• Refresh only focused tab

    2
    0 Votes
    2 Posts
    2k Views
    blahblahblah blahblahB

    Plus 100 to this. Been meaning to log such a request many times.
    Please don’t notify the user about change to the file UNTIL they click on that tab, or at least make it an option alongside ‘Update silently’. Thx.

  • Feature request: Ignore all switches

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    Claudia FrankC

    @Oliver-Marshall

    I assume I don’t really understand your request because the first thing which
    comes into my mind is, if you want to ignore all following command line
    switches why not erasing it at all. I mean, don’t type it. ??

    Cheers
    Claudia

  • 0 Votes
    4 Posts
    4k Views
    Claudia FrankC

    @Stefan-Zimberoff

    Afaik, there is no builtin configurable parameter to achieve this.
    Just some thoughts, do you know the ctrl+right/left behavior?
    If this doesn’t suite you another possible solution might be to
    create two python scripts and assign two shortcuts.
    One would jump an amount of chars to the right and the other
    to the left.
    I assume
    editor.positionFromLine (to get the line start position)
    editor.getLineEndPosition (as name says …)
    editor.lineFromPosition (…)
    editor.getCurrentPos (…)
    editor.gotoPos (…)
    should do the trick.
    If you need help creating the scripts - let us know.

    Cheers
    Claudia

  • what are the differences between SciTE and Notepad++ ?

    3
    0 Votes
    3 Posts
    4k Views
    Mikhail NikitinM

    I guess, an ability of defining own language highlight rules is one of the differences.

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