• Where in Notepad++ is the guide for Bold, Italics, etc?

    Locked
    7
    0 Votes
    7 Posts
    113k Views
    Claudia FrankC

    @Libby-Len-Traubman

    so I assume your initial question about bold, italic was also related to html programming?

    If so, yes you can use npp to create webpages but notepad++ doesn’t have any help file
    how to create a webpage.
    What you can do is to use web resources like https://www.w3schools.com/
    and once you’ve written your code use run menu and one of the browser functions like
    launch in firefox etc…
    But, again, notepad++ does not provide all those browsers it just assumes
    that you have, at least one, installed, and tries to start it with the current document open as parameter to the browser executable.

    Cheers
    Claudia

  • Nppnetnote not found

    5
    0 Votes
    5 Posts
    2k Views
    chcgC

    Now also an unofficial x64 version is available via pluginmanager.

  • 0 Votes
    6 Posts
    7k Views
    chcgC

    @kingtls I’m using n++ heavily now for over 10 years and never observed that behaviour on my own. So it seems to be a rare case and not easy to track. There are also multiple root causes in a widespreaded environment (WinXP-WIn10, Wine, 32bit/64bit, different plugin installations, etc.):

    some of the issues happen due to power fails, which might need a transaction save file system to avoid editing data on a network drive with corruption due to network errors coredumps either by n++ itself or some plugin

    And at least the reproducible issues I think get fixed.

  • Regex help needed editing the function list xml file

    3
    0 Votes
    3 Posts
    1k Views
    MAPJe71M

    @Florent-Pagès as available in Notepad++ v7.3.2.0 which was enhanced in v7.5.1.0 i.e. allowing $ in identifiers and whitespace before the left/open parenthesis.

  • 0 Votes
    2 Posts
    909 Views
    PeterJonesP

    @Clayton-Moudy ,

    It’s going to be hard for us to debug, given the few details you’ve given. The more you can tell us, the easier it is for us to help you.

    I’ve had to guess at your input file. (In this forum when you post, you can just prefix four more spaces on the quoted material, and the forum will properly mark it as preformatted code, so it’s easily set apart. I also included a comment-line… and will possibly need a first line that doesn’t indent)

    # comment-line with no extra spaces to align forum formatting two) spaces three spaces) four spaces five spaces no spaces one space two spaces) three spaces four spaces five # blank line to align forum formatting

    Other than the # lines, is that an accurate representation of your file?

    What is the difference between the two computers? Could you grab the ? > Debug Info > copy for each computer’s Notepad++, and paste in a reply – and mark which one does it right, and which does it wrong? What other settings are different between the NPP installations on each?

  • 0 Votes
    4 Posts
    2k Views
  • 7.5.4 64 bit no plugin manager

    5
    0 Votes
    5 Posts
    23k Views
    MatthewMcDM

    Resolved this on a new machine by installing 7.4.2 (https://notepad-plus-plus.org/download/v7.4.2.html) and then let the upgrader do it’s job.

  • edit m3u iptv list file - hide line number in results

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    Claudia FrankC

    @SiberMedya

    I assume you want to copy the result without the line numbers, correct?
    If so, right-click into the result window, select all and copy
    and paste in a new document.
    Even it looks like you copy everything, it copies only the found items.

    Cheers
    Claudia

  • 0 Votes
    2 Posts
    1k Views
    MAPJe71M

    (?s)(?<=Address\x20).*(?=\x20Property\x20Type)

  • [Regex] Rounding numbers

    Locked
    6
    0 Votes
    6 Posts
    8k Views
    guy038G

    Hello, @david-wanke, @perterjones and All,

    David, I saw your post yesterday but I hadn’t time to reply, because I’ve just thought about some rounding cases, shown by Peter !

    Of course, with a regex, no problem to change, for instance :

    The floating number 12.45678 into the number 12.457

    And the floating number 12.45623 into the number 12.456

    using the rules :

    If the fourth decimal digit, after the decimal point, is between 0 and 4, just truncate all decimal digits after the third one

    If the fourth decimal digit, after the decimal point, is between 5 and 9, increase by one the third digit and truncate all decimal digits after the third one

    But, as regular expressions, mainly, do string operations, I would have, given the second rule, to take in account all values of the third decimal digit : if 3 then replace by 4, if 7 then replace by 8 and so on… ! And what about rounding 12.99962 which should give 13.000 !

    So, it’s easy to understand that the rounding process is, fundamentally, a mathematical operation, which is usually handled by programming or script languages. For instance, in the Peter’s Python script, the line, below, does the mathematical operation ( I’m not a python expert but I don’t think I’m wrong about it !! )

    while start < end: .... rounded = round( float(text) , 3 ) ....

    As Peter said, this an example of the limitations of regular languages ;-))

    Best Regards,

    guy038

    P.S. :

    Refer to some Wiki documentation, below :

    https://en.wikipedia.org/wiki/Regular_expression

    https://en.wikipedia.org/wiki/Regular_language

    Just note that I did not understand most of the second article, anyway ! But, it’s good, from time to time, to feel oneself, very intelligent… during some seconds ;-))

  • 1 Votes
    5 Posts
    2k Views
    Norbert QuastN

    @Scott-Sumner said:

    Favorites.dat is used by the Explorer plugin…and Claudia’s proposed technique should work just fine for it as well.

    Thank

  • Ctrl + Backspace

    Locked
    6
    0 Votes
    6 Posts
    3k Views
    Claudia FrankC

    @Gaurav99

    by any chance to you mind uploading the erroneous config.xml to some place
    where I can download it? I’m just curious what could have caused this.

    Cheers
    Claudia

  • Always opens As Administrator

    Locked
    2
    0 Votes
    2 Posts
    7k Views
    Claudia FrankC

    @Curtis-Krajca

    wasn’t there such option if you right-cklick on npp shortcut and open settings/properties or so?
    If not, delete the shortcut and create a new one.

    Cheers
    Claudia

  • Is it possible to disable the "Delete from Disk" option from Menu "File".

    Locked
    2
    1 Votes
    2 Posts
    1k Views
    Claudia FrankC

    @Veera-Kotnala

    not really but newer version will move it to recycle bin.

    Cheers
    Claudia

  • Remove duplicate strings with comma separator

    Locked
    4
    0 Votes
    4 Posts
    3k Views
    Saki SoulimenasS

    OK, Problem solved… i needed to wake up first. :)
    I’ll use your comma replacer first and then i can remove duplicate lines.

    Perfect! Thank you very much.
    Have a nice day

  • Mobile\Cloud Usage

    Locked
    2
    0 Votes
    2 Posts
    999 Views
    Claudia FrankC

    @Carl-Fuess

    I assume you are looking for File->SaveSession and File->LoadSession.

    Cheers
    Claudia

  • Marking lines immediatelly after marked lines

    Locked
    3
    0 Votes
    3 Posts
    5k Views
    Mortaza AziziM

    Hello @guy038
    Thanks for your comprehensive reply to my question.

  • UDL for .properties files.

    Locked
    2
    0 Votes
    2 Posts
    998 Views
    Jim DaileyJ

    @Baneeishaque
    Try the Language–>Define your language … menu entry.

  • How can i paste something on lines without making new ones?

    Locked
    1
    0 Votes
    1 Posts
    764 Views
    No one has replied
  • [Regex] Remove all but last line

    Locked
    3
    0 Votes
    3 Posts
    2k Views
    Bobby Peters222B

    Thanks guy038 your second one worked perfectly for me. Really appreciate it.