• Find and Replace bug: first instance replaced with font name?

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    Claudia FrankC

    @Tom-Hall

    have npp6.0 available and tried to replicate this issue, wasn’t successful.
    What I’ve did is

    copied your sample text double click on one instance of pvtz pressed ctrl+h put in abcd in “replace with” field (“find what” was already filled) used replace or replace all and all instances of pvtz got replaced by abcd - as expected.

    Can you confirm this behavior by using same steps?
    Btw. do you have any plugins installed?

    Cheers
    Claudia

  • UDL: TAB character as delimiter

    Locked
    4
    0 Votes
    4 Posts
    3k Views
    MAPJe71M

    Notepad++ uses the native Scintilla YAML (Yet Another Multicolumn Layout) lexer.

  • Open *.txt by default

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    Claudia FrankC

    @Lionel-Modra

    afaik you can’t to this with the builtin file dialog but the explorer plugin has such functionality.

    Cheers
    Claudia

  • Notepad++ 5.1.1 missing

    Locked
    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • No Default Extension for JSON language

    Locked
    5
    0 Votes
    5 Posts
    7k Views
    SuncatcherS

    @Claudia-Frank, thanks. The trick with AppData directory renaming worked. It seems that different configuration files conflicted.

  • how to open this link in notepad

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    Claudia FrankC

    @JackshowX

    has been already addressed here.

    Cheers
    Claudia

  • Search Results Window No Longer Displaying

    Locked
    2
    0 Votes
    2 Posts
    8k Views
    Claudia FrankC

    @Jean-Braithwaite

    there was an incident in the past which was solved by renaming %APPDATA%\notepad++ directory.
    It will be recreated but this could mean that you might have to copy over files from old to new directory.

    Cheers
    Claudia

  • Keyboard Shortcut for moving current tab?

    Locked
    4
    0 Votes
    4 Posts
    4k Views
    pnedevP

    Hello,

    “is there a keyboard shortcut to move the current tab left or right (or even all the way to the right)?”

    Currently there isn’t such command available thus there is also no way to have a shortcut.
    The good news is that in the new N++ version (when it becomes available) this commands will be available.

    BR

  • Extra space in begining of lines

    Locked
    10
    0 Votes
    10 Posts
    6k Views
    mike2003M

    this bug on standart setup. u see my gif? no bbcode!

  • Really Simple.....

    Locked
    4
    0 Votes
    4 Posts
    3k Views
    Claudia FrankC

    @David-Thorpe

    you said you are using pure html. If this is the case, the Preview HTML plugin maybe the solution.
    Install using plugin manager, open it, edit your current doc and you get immediate update how it looks like.

    Cheers
    Claudia

  • i dont know how to fetching data needed

    Locked
    2
    0 Votes
    2 Posts
    1k Views
    Claudia FrankC

    @bob-marpy

    if the lines are formatted that name part can be selected using column mode, then
    put cursor infront of name, scroll down to the end of list, press SHIFT+ALT and click
    to the right part of the name and this column is selected. CTRL+C to copy.

    If it isn’t formatted, either format it or you may think about Analyse plugin.

    Cheers
    Claudia

  • How to supress <br> balise in a subtitle file ?

    5
    0 Votes
    5 Posts
    4k Views
    Scott SumnerS

    I think she’s been contemplating that for 2 months. ;)

  • 0 Votes
    2 Posts
    2k Views
    Jim DaileyJ

    A DOS script master could probably do this with only shell commands in the batch file, but it is likely done easier by invoking some scripting language like AWK, PERL, or Python. It might even be possible using NPP, but I wouldn’t try to do it that way.

  • How do I create character blocks of specified length?

    Locked
    4
    0 Votes
    4 Posts
    3k Views
    guy038G

    Hello Andrew,

    An other formulation, which separates any text in blocks of five characters long, whatever they are, would be :

    SEARCH .{5}(?=.)

    REPLACE $0\x20

    Notes :

    The .{5} syntax matches for five consecutive standard characters

    I added the look-ahead form (?=.) , just to ensure that NO extra-space will be added, at the end of each long-line scan

    The $0 syntax represents the match of the whole regex, that is to say, any block of five characters

    And \x20 is, simply, the hexadecimal form of the space character

    Best Regards,

    guy038

  • Duplicate lines

    Locked
    4
    0 Votes
    4 Posts
    11k Views
    guy038G

    Hello, Dusty Pulver,

    An other simple possibility, that does not need any plugin, would be :

    Sort your file, with the native N+++ sort ( menu option Edit - Line Operations - Sort Lines Lexicographically Ascending )

    Move to the beginning of your file ( CTRL + Origin )

    Open the Replace dialog ( CTRL + H )

    Perform the S/R, below, in Regular expression search mode :

    SEARCH : (?-s)^(.*\R)\1+

    REPLACE : \1

    Notes :

    The (?-s) modifier ensures that the dot will match standard characters, only, even if you previously checked the . matches newline option !

    The \R stands for any kind of EOL character(s)

    Best Regards,

    guy038

  • UserDefinedLanguage folder question

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    Claudia FrankC

    @Heng-Yuan

    UDL, afaik - no.
    Python Script plugin and proper script - I guess.

    Cheers
    Claudia

  • iostream: No such file or directory

    Locked
    5
    0 Votes
    5 Posts
    4k Views
    Claudia FrankC

    @Javitxu-Namas

    npp doesn’t know anything about mingw as well as nppexec.
    You need to provide the information where to find the libraries, headers etc…
    The example above should give you an idea what needs to be done.

    // c Compiles without linking. // Dname=definition Defines a symbol (as with #define). // E Stop after the preprocessing stage. // g Produce debugging information. // I Searches the given directory for "includes". // llibname Searches the specified library when linking. // ofilename Names the output file. // -help Provides (some) help. // -version Displays the version number. g++ --version // print compiler version ENV_SET PATH = D:\ProgramData\Compiler\MinGW\bin;$(SYS.PATH) // extend path variable //g++ -Wall -g -std=c++11 -o $(NAME_PART).exe $(FULL_CURRENT_PATH) -Ld D:\ProgramData\Compiler\MinGW\lib\libshlwapi.a g++ -Wall -g -std=c++11 -o $(NAME_PART).exe $(FULL_CURRENT_PATH) -ID:\Repositories\boost\ $(NAME_PART).exe

    Cheers
    Claudia

  • 0 Votes
    2 Posts
    2k Views
    Claudia FrankC

    @Leo-Nicholson

    did you check whether one of already created udl fit your needs?

    Cheers
    Claudia

  • String before symbol formatted in my User Defined Language UDL

    9
    0 Votes
    9 Posts
    5k Views
    Claudia FrankC

    @Eli-Chavez

    …but i thought id ask.

    always welcome.

    Cheers
    Claudia

  • Plugin Manager shows no plugins to install

    Locked
    4
    0 Votes
    4 Posts
    11k Views
    Claudia FrankC

    @usha-mandava

    npp (or better plugin manager) sends an http get request to sourceforge server, nothing special. (TCP/PORT 80)
    Could it be that you have multiple network interfaces in your pc? Routing issue?
    Can you open sourceforge website on that pc?

    Cheers
    Claudia