• Italics and text color

    2
    0 Votes
    2 Posts
    116 Views
    PeterJonesP

    @Ya-Boley ,

    In Notepad++, you would type the HTML code that changes color and/or sets text as italics, like the <i> tag or <p style="color: red;"> style, then save your file and upload it to your website.

    Your question is actually an HTML/CSS question, not a question specific to Notepad++ . We can help you use Notepad++ to make it more efficient for you to enter and manipulate your HTML/CSS code (for example, recommending the HTML Tag plugin and probably XML Tools plugin to make your HTML manipulation more efficient, and the NppFTP plugin for remote editing directly on your webserver)

    But generic HTML/CSS questions like the one you asked are nothing specific to Notepad++, and the HTML/CSS answer is the same whether you are using Notepad++ or notepad.exe or emacs, and thus is off topic for a Notepad++ forum, as our FAQ explains. If you need help with HTML/CSS, you will need to find a website/forum that specializes in HTML/CSS, or at least has a section where HTML/CSS questions are on-topic (such as the Stack Exchange family of sites)

  • Different text path Notepad++ batch files

    3
    0 Votes
    3 Posts
    109 Views
    mathlete2M

    @Max-lighnting said in Different text path Notepad++ batch files:

    how to use different text path on batch notepad++
    (…)
    “set /p Text”= it makes messege like text on powershell
    but i want it to use differet path for like yes/no questions

    Further to @PeterJones 's comments, it’s not clear what you mean by a “text path” in NP++. Your follow-up comments sound like references to the console window from a running batch script, but as Peter alluded to, those are the subject of other forums like the various Stack Exchange sites, not this one.

  • Display in NPP

    22
    1 Votes
    22 Posts
    685 Views
    mathlete2M

    @DomOBU said in Display in NPP:

    There are some basic words in CSS: selector, property and value. Why don’t these words appear in the CSS Style Configurator?

    This sounds like a question for the developers, but it looks like a few other users have had similar/related issues with CSS syntax highlighting, even when the identifiers are listed. If these threads do not answer your question, feel free to start a new one.

  • Remove duplicate links from the end - notpad++

    7
    0 Votes
    7 Posts
    145 Views
    guy038G

    Hello @robaned, @terry-r and All,

    Terry, your regex (?-s)^.+?/([^/]+)\R(?=.+?\1) works as expected. Howewer you still could shorten it !

    Indeed, if you have begun your regex with (?-s)^.+/, obviously, the remainder of current line cannot contain any / char anymore !

    Thus, your search regex can be simplified to :

    (?-s)^.+/(.+)\R(?=.+\1)

    I found out an other solution which could be faster in case of numerous duplicates :

    FIND (?-s)^(.+/(.+)\R)(.+/\2\R)+

    REPLACE $1

    My solution acts as the opposite of yours : it keeps the first duplicate line of each set !

    Best Regards,

    guy038

  • COBOL Word Character

    3
    0 Votes
    3 Posts
    157 Views
    Lycan ThropeL

    @Jonathan-R ,
    You’re very unclear in your question. @PeterJones is correct.

    It’s been a long time since I did any COBOL of any flavor, so I did a quick search on the newest IBM COBOL syntax, and apparently, yes, the hyphen(-) is a word character. My question, is why don’t you think that the current COBOL language is properly rendering syntax coloring, etc for COBOL, let alone IBM COBOL?

    Here is a screenshot of me just pasting some sample COBOL code in Notepad++, and just selecting under Language->C->COBOL and this screenshot shows the current colorization of that language, properly showing the hyphen as a word character.

    COBOLExampleHyphen.PNG

    This is that code so you can try it yourself:

    IDENTIFICATION DIVISION. PROGRAM-ID. VARS. DATA DIVISION. *> working storage defines variables WORKING-STORAGE SECTION. *> define a number with a sign, 3 numbers, a decimal, and then *> two numbers aafter the decimal. by default it should be 0 filled 01 FIRST-VAR PIC S9(3)V9(2). *> do the same thing as above but actually initialize *> to a number -123.45 01 SECOND-VAR PIC S9(3)V9(2) VALUE -123.45. *> defines an alphabetic string and initialize it to abcdef 01 THIRD-VAR PIC A(6) VALUE 'ABCDEF'. *> define an alphanumeric string and initialize it to a121$ 01 FOURTH-VAR PIC X(5) VALUE 'A121$'. *> create a grouped variable 01 GROUP-VAR. 05 SUBVAR-1 PIC 9(3) VALUE 337. *> create 3 alphanumerics, but use less than *> the allocated space for each of them 05 SUBVAR-2 PIC X(15) VALUE 'LALALALA'. 05 SUBVAR-3 PIC X(15) VALUE 'LALALA'. 05 SUBVAR-4 PIC X(15) VALUE 'LALALA'. *> print our variables PROCEDURE DIVISION. DISPLAY "1ST VAR :"FIRST-VAR. DISPLAY "2ND VAR :"SECOND-VAR. DISPLAY "3RD VAR :"THIRD-VAR. DISPLAY "4TH VAR :"FOURTH-VAR. DISPLAY "GROUP VAR :"GROUP-VAR. STOP RUN.

    As you can see…the hyphen(-) is treated as a word character, and properly highlighted even when being used as minus in a numerical representation.

    So again, what are you really asking, because you are clear as mud.

  • Notepad++ resets file permission bits for WSL files on save

    18
    1 Votes
    18 Posts
    1k Views
    xomxX

    @anno73 said in Notepad++ resets file permission bits for WSL files on save:

    (wsl --update) and since then the issue does not occur any more.

    This could mean that the WSL team fixed this stuff somehow in some newer versions (as I installed WSL for testing some time after you, I had probably such a newer version installed, so my ok N++ test corresponds to your current one).

    Still - I am curious how this works (there has to be probably some watch-dog guard of these NTFS EA for the drives/folders mounted from within the WSL (?)).

  • assign the same keyboard shortcut to multiple Macros

    13
    0 Votes
    13 Posts
    263 Views
    PeterJonesP

    @mathlete2 said in assign the same keyboard shortcut to multiple Macros:

    I’ve submitted another request targeted more towards my ultimate end goal.

    If your intent is to have the new one, not the old one, make sure you close the old one, so the developer knows which you actually want.

  • 0 Votes
    5 Posts
    2k Views
    PeterJonesP

    @gokul-bhardwaj ,

    Please take the advice that I and @mkupper provided, and let us know the results:

    were you able to find the uinstaller event using the Microsoft article I linked? did you search the locations that @mkupper suggested for finding the exe? (for the third “location”, you can just search your whole computer using Windows Explorer’s “search” feature to find notepad++.exe) If so, was it at any of those locations? did you search the locations that @mkupper suggested for the config.xml and session.xml ? if so, did you find them, or not?

    Without you following through with that advice, no one can help you more than the advice already given.

  • Folder as workspace doesn't update symbolic link folders

    2
    2 Votes
    2 Posts
    114 Views
  • How to insert blank line in between every line

    16
    0 Votes
    16 Posts
    11k Views
    EkopalypseE

    @Alan-Kilborn said in How to insert blank line in between every line:

    I suppose this is about the same as @Ekopalypse 's post earlie

    No … I have zero dollars, you have two? No cookies for me :(

  • NotePad French via Intune

    4
    1 Votes
    4 Posts
    204 Views
    xomxX

    @Jean-Jean said in NotePad French via Intune:

    i would like the package FR for Notepad usage like Settings > Preferences > General > Localization : Français

    If you do, what I told you, then after the silent installation your N++ GUI should be automatically in FR.

    (during silent installations, the N++ installer can only look for any previous installation lang used on the comp and then use it to also preset the GUI of the installed N++ app)

    Edit: Maybe the problem is in what Intune really sees in that RegKey during your installation. A logging should reveal if this is it.

    Edit2: You can also do a “post-installing” action: simply take e.g. the “C:\Program Files\Notepad++\localization\french.xml” and copy it to the user %APPDATA%\Notepad++\nativeLang.xml

  • [Off Topic] How to write HTML code

    Locked
    4
    0 Votes
    4 Posts
    127 Views
    Alan KilbornA

    @Nicholas

    Please don’t continue with off-topic replies to this off-topic thread.

    @PeterJones

    Suggest locking.

  • need help with a style for a .cfg

    2
    1 Votes
    2 Posts
    94 Views
    PeterJonesP

    @Beau-Thompson ,

    You are in the right area:

    the COMMENT styles affect the lines that start with # the SECTION styles affect the [QoLmod] headers the ASSIGNMENT styles affect the = between the key and value the KEY styles affect the setting name (like lastUsername, to the left of the =) the DEFAULT styles affect the value (to the right of the =) I am not sure, but I am guessing the DEFVAL is an error condition (since it’s red in the default light-mode styler)

    So you can set the colors for each of those styles to match your desires.

    The “Properties” language appears to not recognize comments at the end of a setting – that’s most likely because either the “Lexilla” library that Notepad++ uses for parsing the files doesn’t recognize that variant of the loosely-related slew of file-types that make up the “Properties” and “INI” filetypes, or because there’s an option for Lexilla’s “Properties” lexing which Notepad++ doesn’t use; I haven’t looked into which it is. Either way, it would require a fix in Notepad++ and possibly a fix in Lexilla before it (though if it is an option, then you could make use of the PythonScript plugin, or similar, to automatically set that Lexilla option even though Notepad++ itself doesn’t).

    For the comment-after-assignment, there is a possible workaround:

    install EnhanceAnyLexer plugin open your QoLmod.cfg Plugins > EnhanceAnyLanguage > Enhance current language it will open EnhanceAnyLexerConfig.ini in your other View, and create a section called [properties file]. You could set that section to[properties file] 0x00aa00 = \S\s*\K#.* (making sure to not keep excluded_styles or to comment out that line)
    and save the EnhanceAnyLexerConfig.ini Going forward, the plugin should change the end-of-line # .... comments to a shade of green. (It will happen automatically the next time you open properties files, once the plugin config has been saved)

    The limitation with EnhanceAnyLexer is that it cannot change bold/italics/underline status, and cannot change background color. So it won’t exactly match the italicized normal COMMENTS style, but it will be close.

    ----
    update: In the LexProps source code, I only see lexer.props.allow.initial.spaces and fold.compact, so as far as I can find, Lexilla does not provides a way to allow comments at the end of a line. As a result, someone would have to request that the Lexilla project add that feature, and they would have to implement and publish it, then Notepad++ would have to update to the most recent Lexilla.
    Also, it appears that DEFVAL is used for the @ symbol for “default value”, not an error condition.

  • How to Select ALL text within a Folding Block?

    13
    0 Votes
    13 Posts
    353 Views
    gerdb42G

    @Federico-Debla said in How to Select ALL text within a Folding Block?:

    I’m on Version 7.6.6 by the way.

    That Version came out in April 2019. Wouldn’t it be time for an update? People here might not be able to reproduce your issues just because they use a more current Version.

  • Advanced replace

    3
    1 Votes
    3 Posts
    133 Views
    Mark OlsonM

    @Américo-J-C-Sousa
    Try using the find-replace form (Search->Replace from the main menu or Ctrl+H with default keybindings) and do the following:

    Set Search Mode to Regular Expressions Check the Wrap around box Find what: <(ClosingStockQuantity>)(-?\d+)(\.\d)?</ClosingStockQuantity> Replace with: <${1}${2}(?3${3}0:.00)</${1}

    This will add a zero as the second decimal place for all numbers that already have one decimal place, and a .00 after all numbers that don’t yet have any decimal places.

    Note that this is just manipulating the numbers as text, not doing actual math. If you wanted to do math on the numbers, you will need to use a scripting language.

  • Notepad++ in usb can't open

    3
    0 Votes
    3 Posts
    149 Views
    GraysonGrayG

    Thank you so much for the info.

  • Novice - Interpretate JSON files.

    7
    0 Votes
    7 Posts
    256 Views
    Mark OlsonM

    @Alan-Kilborn said in Novice - Interpretate JSON files.:

    I took that to mean he was looking for Notepad++ to further help him understand the data (it really can’t)

    I mean, JsonTools does have fairly comprehensive support for JSON Schema, so if by understand the data you mean “create a schema that compactly represents the structure of your file and then validate other JSON files against that schema”, JsonTools can absolutely do that.

  • Question about LF and <br>

    3
    0 Votes
    3 Posts
    134 Views
    CoisesC

    @Saragrace-Knauf said in Question about LF and <br>:

    What am I not understanding?

    Probably that a plain text editor (like Notepad++), the editor in WordPress, and HTML (what’s ultimately sent to a web browser to display as a web page) all have different conventions.

    I haven’t used WordPress, but it’s likely that the editor you use to create your pages there has its own conventions about how to interpret line-ending signals. From what you’ve written, I think you might be copying from HTML, editing in Notepad++, then copying to and saving from WordPress. To do that successfully, you’d need to understand how each of those three manages line endings.

    Notepad++ interprets CR, LF or CRLF in sequence as a line break. In the status bar at the bottom, you’ll see Windows (CR LF), Unix (LF) or Macintoch (CR); that tells you what Notepad++ will insert when you press the Enter key. (There are also a few operations that will not work correctly unless all the line endings in your file match whatever is set there.) You can right-click that to get a menu to change all line endings to a different one of the three choices. It is almost never a good idea to have mixed line ending types in the same file, or to have what’s in the file be different from what is shown in the status bar. (If you have mixed endings but what is shown is already what you want them all to be, just switch to something else and then switch back.)

    HTML mostly ignores CR and LF. (There are exceptions in certain contexts, such as within <pre></pre> tags.) Most often you allow the browser to determine where line breaks should occur within paragraphs, and use tags like <p></p> or <div></div> to separate blocks of text. The <br> tag is used when you want to force a line break within a block (rather than, say, starting a new paragraph). Unless you know why you need to do that, don’t; use <p></p> tags to separate paragraphs, and let the reader’s browser work out where to break lines within paragraphs.

    Finally, I don’t know how the WordPress editor works, but it probably has its own conventions. You’d need to learn about those from WordPress documentation, forums and support.

    Edit to add: One other thing. If you’re just adding line endings in Notepad++ because you can’t read the paragraphs because they stretch way past the right edge of the window, turn on View | Word wrap.

  • Notepad fails to respond

    2
    0 Votes
    2 Posts
    91 Views
    Terry RT

    @Jonathan-Holden

    Well you have given almost no information at all. Firstly you need to show us the debug info (from the ? menu). Copy that info and paste here.

    Then you might also want to read the FAQ post here as it contains useful info to help you identify where the issue might arise.

    Terry

  • 1 Votes
    3 Posts
    80 Views
    Saragrace KnaufS

    @PeterJones

    .* is greedy
    Try .*? which is non-greedy

    That works perfectly. This also allowed me to go back to the instruction manual and find it. The “Multiplying Operators” threw me. I was looking for multiple characters after single characters!