• I am a crazy Korean2

    Locked
    1
    0 Votes
    1 Posts
    542 Views
    No one has replied
  • I am a crazy Korean1

    Locked
    1
    0 Votes
    1 Posts
    706 Views
    No one has replied
  • FunctionList.xml how to ignore wrong syntax.

    3
    0 Votes
    3 Posts
    1k Views
    Shin JaeyongS

    thanks for your help.
    i works well~ :)

  • Looks like eggs got ahead of the chicken...

    5
    0 Votes
    5 Posts
    2k Views
    A VA

    Please read Google EULA before using their search and services. In view of recent FB events you may look at it in a different light. Another, point is that the Software good products like NPP should not loose features or make it difficult for users. Whoever is in charge of this development should take a note of Plugin Manager MIA since August 2017. Just 2c worth form the Hardware guy. Anyway, my “nuke 'em” solution seems to work. Not advisable for everyone, but my old PC is dying and I can no afford loosing another day, so drastic measures were in order.

  • "Update Notepad++" Does Not Work

    7
    0 Votes
    7 Posts
    3k Views
    Firstname LastnameF

    PatchMyPC reports version 7.5.6 is available. As per what you stated in your link, “Update Notepad++” as expected does not show that update. I will try again a couple weeks.

  • 0 Votes
    1 Posts
    722 Views
    No one has replied
  • 0 Votes
    3 Posts
    1k Views
    TMuel1123T

    Hi Jim,

    I assumed the -l parameter as an override function for the detection of the language by the files extension. because if i try -lbash then it highlites it with the Bash code highlitning.

    If I use a *.din file it ofcause works, but then it uses the detection for the language of the file extension and i could omit the -l parameter.

    it is my intention to have the target.txt in my definition, because i dont want to have the highlight for all text files, but i ofetn open files which have the name target.txt, which i always want to have highlighted.

    Best regards
    TMuel

  • Comment Line Style not respected if first line of file

    Locked
    1
    0 Votes
    1 Posts
    769 Views
    No one has replied
  • CFG file unreadable - gibberish

    Locked
    3
    0 Votes
    3 Posts
    3k Views
    Ulas YalcinU

    @Scott-Sumner ahh i see. that sucks T_T
    thanks!

  • How to keep only unique line

    Locked
    11
    1 Votes
    11 Posts
    4k Views
    guy038G

    Hi, @محمد-أشرف, @claudia-frank and All

    Ah, yes ! I forgot to tell that the last item of the list ( so the last 555 line , in your example) must be followed by a line-break !

    Everything should be OK !

    Cheers

    guy038

  • Superscript

    Locked
    2
    0 Votes
    2 Posts
    4k Views
    MAPJe71M

    If you’re trying to superscript text in Notepad++: you can’t.
    If you’re editing HTML/CSS source code in Notepad++: you’re in the wrong forum.

  • Limitations on UDL?

    5
    0 Votes
    5 Posts
    2k Views
    Claudia FrankC

    @CatMeat

    The issue with lexing/parsing is always when having “glued” characters, means
    how can a lexer/parser know that 100.0f is really the number and not 100.0f; ?

    As UDL can only parse the given string and can’t really do any lexical analysis,
    as it don’t know the language, we need to tweak,hack around such complications.

    In the given case, I would use = as an open and semicolon as closing char in a delimiter
    which is setup with the same color as the default color and allowing nesting with numbers.
    But this could be that it breaks other things, may I ask which language you are trying to build?

    Cheers
    Claudia

  • 2 Votes
    4 Posts
    10k Views
    古旮

    Funny enough: another same question.

  • "Run" Doesn't work.

    Locked
    2
    0 Votes
    2 Posts
    992 Views
    Scott SumnerS

    @Erick-Montes-de-Oca

    If you use close Chrome and then do (in Notepad++) Run (menu) -> Launch in Chrome and Chrome opens up then you are seeking help in the wrong place; this is only for Notepad++ issues and discussion, not what is wrong with your HTML code (or whatever). Please find a forum specific to that for further help.

  • Changing comment character in assembly

    5
    0 Votes
    5 Posts
    2k Views
    Dal BrarD

    6 months later, same problem still exists…

  • Notepad++/Octave 4.2.2

    Locked
    1
    0 Votes
    1 Posts
    890 Views
    No one has replied
  • Paste/Join Lines command

    Locked
    9
    0 Votes
    9 Posts
    3k Views
    Claudia FrankC

    @Austin-Dean-Combs

    if you still have access to the other computer, check which plugins are in use
    (debug-info under ?) and then see which one is missing on your computer.

    Cheers
    Claudia

  • notepad++ url processing cyrillic symbols

    29
    0 Votes
    29 Posts
    21k Views
    Александр КорженевскийА

    Maybe the developers can make a correction?
    What about to move definition of this regexp to config file?
    That anybody, who need to, can change it without recompilation!
    And update FAQ how to add support of national symbols to url recognation
    I very much hope that correction will be made.

  • 0 Votes
    1 Posts
    782 Views
    No one has replied
  • collapse everything except <h1>

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    guy038G

    Hello, @paweł-łabno and All,

    Not totally sure that is the right solution for you ! But let’s give it a try ;-)). I simply suppose that all your titles lay in a single line. So :

    Open one of your html files, in N++

    Fold all the sections with the View > Fold All menu option or use the Alt + 0 shortcut ( NOT from the numeric keypad ! )

    => The text collapses and you should see the <html> tag, only !

    Then, open the Find dialog Search > Find… menu option or use the Ctrl + F shortcut

    Type in the regex (?-is)(?<=<h1>).*?(?=</h1>) , in the Find what: zone

    Select the Regular expression search mode

    Click on the Find All in Current Document button

    => At once, the Find result windows pops up, at bottom of the screen, with all the <h1>....</h1> titles !

    Now, simply double-click, in the Find result window, on one of these results. Immediately :

    Your HTML file should expand the zone, containing the corresponding <h1>....</h1> title ;-))

    All the title, between the boundaries <h1> and </h1>, is selected

    Best Regards

    guy038