• How do i make this?

    2
    0 Votes
    2 Posts
    2k Views
    Claudia FrankC

    @Andrija-Slomo

    this plus sign is assigned by scintilla component and triggered by the lexer
    by defining some flags. If you already see this within npp,
    it is just a matter of finding out how the related lexer defines its folding rules.

    Cheers
    Claudia

  • Unexpectedly Shut Down

    2
    0 Votes
    2 Posts
    2k Views
    Claudia FrankC

    @Shaifullah-Shaon

    where did you download the installer from?
    Which operating system do you use?
    What does eventlog show?
    Once the operating systems restarts, do some additional infos show up?

    Cheers
    Claudia

  • Notepad ++ freezes when I select with the mouse

    4
    0 Votes
    4 Posts
    2k Views
    Claudia FrankC

    @Guilherme-Saldanha

    the swiss army knife in this case is sysinternals procmon.
    It can record many many events which happen while starting/executing a program.
    But it can’t really detect driver issue - it can give some hints but can’t really identify it.
    If it is driver related, (maybe video driver update?) you would need to use tools like
    windbg, ollydbg etc… but here we start doing deep hacking, means you need to have
    a very very good understanding what is going on under the hood.

    Cheers
    Claudia

  • How to change police in Notepad++?

    2
    0 Votes
    2 Posts
    5k Views
    Claudia FrankC

    @Patrick-Guebhardt

    are you looking for settings->style configurator->Global styles?

    Cheers
    Claudia

  • REGEX again: How can I select/mark this 3 works on a different lines

    20
    0 Votes
    20 Posts
    7k Views
    Vasile CarausV

    hello, I find the solutions:

    So, to delete everything before those 3 words, included the 3 lines with the words:

    Search:
    (?s).*\n([ \t]+Recente\s+Coments\s+Tags)
    Replace By:
    Leave Empty

    Delete everything after those 3 words included the 3 lines with the words:
    Search:
    (?s)([ \t]+Recente\s+Coments\s+Tags)(.*$)
    Replace by:
    $1

  • Regex - Select the first 10 lines (included blank ones) in 200 files

    7
    0 Votes
    7 Posts
    3k Views
    Vasile CarausV

    (?:^.*\R?){10}\z

    WORKS ! Thanks

  • High contrast mode in Windows

    Locked
    6
    0 Votes
    6 Posts
    5k Views
    Steve ShermanS

    Actually DeepBlack is even better, pretty much what I wanted. So thanks for all advice and taking the time to help. I think I’m where I want to be now.

  • 0 Votes
    2 Posts
    1k Views
    guy038G

    Hello, Badz Tuviera,

    I’m really sorry, but I did not fully understand what you want to achieve :-(

    Seemingly, you didn’t say what are the replacement strings, for either, the word TAFUNA and the number 203, in the five digits number 42031. May be, did you mean that you want to delete them ?

    But I did understand that the first digit 4 of the number 42031 must be replaced by the digit 2 !

    So, giving your original text, below :

    UMTS U81M200LEONE 3G_Leone-4 -14.3479 -170.781 4357 28 42004 240 UMTS U81M203TAFUNA 3G_Tafuna-1 -14.3235 -170.7172 4357 80 42031 130

    Which modified text do you expect to ?

    May be, you can provide some additional examples or explanations ! As usual, when a problem is clearly defined, the solution is “half” found !

    Best Regards,

    guy038

  • Make N++ show only one text file, not 2

    3
    0 Votes
    3 Posts
    2k Views
    Gary HarveyG

    @Claudia-Frank
    Thanks. That did it. Well, I had a handful of files in the “other view” so I had to repeat it a handful of times.
    Much appreciated.

  • Right ALT key highlights menu bar items - Windows 10

    Locked
    6
    0 Votes
    6 Posts
    4k Views
    Claudia FrankC

    @Anna-Maria-Schmid

    nice to see that it has been solved - out of curiosity, did you reinstall WinCompose while npp was running?
    In other words, do you think it could be caused by @samhocevar assumptions?

    Cheers
    Claudia

  • How to remove duplicate words in a line using Notepad++?

    13
    0 Votes
    13 Posts
    17k Views
    glossarG

    One more thing:

    When this regex finds no duplicates to delete, does it delete all lines, hence is this same as with the third consecutive click? As already said, the fact that it deletes all the lines with the third click is fine, but it would be very nice and helpful if it would give the usual (and expected) info, just like others, like “0 occurrence was replaced”, instead of deleting all the lines when it founds no duplicate to delete.

    And one strange thing:

    Sometimes, after the first and second click on “replace all”, it states “1 occurrence was replaced” , but the colour of the “save icon” on the tab of the file doesn’t change to red, indicating that the files is modified.

  • REGEX: Mark/Delete the 2 second line after some word

    Locked
    3
    0 Votes
    3 Posts
    3k Views
    Vasile CarausV

    well, guy38, nice present for me.

    thanks a lot !

    This is for you !

    https://www.youtube.com/watch?v=nPW5nfoIYf8

  • Language definition - space in comment definition

    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • New Instance How?

    4
    0 Votes
    4 Posts
    3k Views
    MacNalaM

    Funny when I first tried the right-click the Move/Open to new instance were greyed out non clickable. Now they work. Ahh weele the Christ mas gremlins get everywhere.
    Thanks for the interest.

  • Problem reading diacritics after using a PDF Extract/convert software

    Locked
    9
    0 Votes
    9 Posts
    5k Views
    Vasile CarausV

    @glossar said:

    t is not even worth trying, is to turn the pdf into a dead o

    hello Glossar. Thanks for the idea with pdf to images. This is a possible good solution, but if there are many many pdf (like 200) witch I want to convert to .txt, will be very hard.

    So, I find another solution. After convert all files, I will use option “Find and Replace all in all folder”, all those symbols (like [,],) that replace the diacritics: These symbols have the same function and repeats all the time.

    ] = t
    \|á = a
    [ = s
    ~ = i

  • problem with php code in html file

    Locked
    4
    0 Votes
    4 Posts
    3k Views
    Claudia FrankC

    @Piloto-Estrellas

    you need to understand that the browser doesn’t execute your php code, in fact the browser do only
    understand html. It’s the webserver which executes the php code and makes proper html out of it,
    which then is sent to the browser.

    Cheers
    Claudia

  • Sort a list of filenames alphabetically but grouped by their extension

    Locked
    4
    0 Votes
    4 Posts
    4k Views
    guy038G

    Hi Anu Anand Premji and All,

    Well, I’m back home and here are some explanations on the two S/R :

    The two search regex begin with the modifier (?-s) ( No PCRE_DOTALL ) that ensures that the regex engine will consider the dot special character . will match only a single standard character and not an EOL character

    Then the part, ^.+\. matches, from the beginning of the current line ^, a maximum, NON empty, of characters, till a literal dot character ( which must be escaped by an antislash character \ in order to be considered as literal ) So, if the filename would be, for instance, “abc.def.ghi.cpp”, this range would be the string abc.def.ghi

    The remainder of the search regex (.+) catches the remainder of the standard characters of the current line ( The extension part ) which is stored as group 1, due to the couple of parentheses

    In replacement, the regex \1\t\t$0 rewrites the group 1 ( The extension part ), then two tabulation characters and, finally, the searched string, that is to say the name of each file, with its extension ( part $0 )

    I preferred to use the tabulation character, instead of some spaces, because, with the tabulation character, the complete filenames look all aligned :-)

    In the second S/R the part ^.+ selects, from the beginning of each line ^, the range maximum, NON empty, of standard characters, till a non empty range of tabulation characters \t+

    As the replacement field is, this time, empty, all these characters, included tabulations , are, simply, deleted !

    Cheers,

    guuy038

  • Highlighting Start/End-Tags inside PHP-Code

    Locked
    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • Trouble with defining a Function List entry

    11
    0 Votes
    11 Posts
    8k Views
    MAPJe71M

    @Lokathor
    I will add the Haskell parser to a future FunctionList update.

  • Setting up notebook ++

    Locked
    1
    0 Votes
    1 Posts
    1k Views
    No one has replied