Community
    • Login

    Style break - bug or normal?

    Scheduled Pinned Locked Moved General Discussion
    3 Posts 2 Posters 389 Views
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • Caminho PerfeiçãoC
      Caminho Perfeição
      last edited by

      In a file with the extension ‘.php’ or ‘.html’, whenever I use the character: `
      Because I use it to insert texts in JavaScript.
      Causes style breakage.
      This is normal?

      https://i.ibb.co/gvk58qQ/notepad.png

      PeterJonesP 1 Reply Last reply Reply Quote 0
      • PeterJonesP
        PeterJones @Caminho Perfeição
        last edited by

        @Caminho-Perfeição ,

        Sorry it took a while to reply; my IT blocks that image-hosting site, so I meant to check last night at home, but forgot. Today, when I saw your question still hadn’t been answered, I disconnected my phone from work WiFi and used spotty cell connection instead, and looked at the image, then re-typed a snippet of code into Notepad++. If you had just provided us with a short sample of code that showed the problem, by including the following in your post, it would have saved a ton of effort, and you might have gotten a response from me yesterday.

        ```
        <script>
        let transactions = event.data.transactions
        for(let i=0; i < transactions.length; i++) {
            $('#transactions-list').append(`<tr>
                    <td></td>
                    <td></td>
                    <td></td>
                    <td></td>
                </tr>`)
        }
        </script>
        <p>okay</p>
        ```
        

        When I take that code in Notepad++ and use the HTML or PHP parser, they look the same as each other, but different than when you manually select JavaScript:

        html 43662958-88e9-4522-9dfa-542c077b54bc-image.png
        php e0b2abf0-e0fa-44ac-9c87-113cf3198da6-image.png
        js 4e7e7295-3776-4bc2-97ea-77d6559cd5c9-image.png

        I assume that the JS version is the one you want, because it’s treating the `...` as a multiline string.

        The just-JS parser has a style in Settings > Style Configurator > Language: JavaScript called STRINGRAW which styles the back-tick “template literal” strings . The PHP and HTML parsers do their own parsing, but use the sub-parser Settings > Style Configurator > Language: JavaScript (embedded) which doesn’t have that style available (because it’s a different lexer).

        Notepad++ uses the Scintilla IP for the lexers/syntax highlighting. (As of NPP v7.8, Scintilla 4.20; as of NPP 7.9.4, Scintilla 4.46). So not knowing which version you were on (and since I already had SciTE 4.20, Scintilla’s testbed editor, which we can use to confirm whether it’s a Notepad++ issue or Scintilla issue), and compare HTML/PHP/JS in SciTE as well:

        4.20 html 4fb2a54c-3de0-4c4f-9da5-77788909fd86-image.png doesn’t show matching parenthesis; inconsistent coloring inside the string
        4.20 php 8c193cf5-7916-494e-ad9d-cc596b9cf925-image.png same
        4.20 js 85b43017-f75f-48e7-87f3-16059772bba1-image.png shows matching paren in blue; the string has one consistent color

        Since SciTE showed similar difference between HTML/PHP behavior and JS behavior in 420, there’s a good chance the problem is on the Scintilla side. I just checked the SciTE 4.46 (which matches Notepad++ 8.1.4’s version of Scintilla) and SciTE 5.11 (which is the most recent version of Scintilla, as of today’s download), and they both have the difference, too.

        So if you’re interested in getting that feature added, you would likely have to go to the Scintilla Feature Request or Bug Report area, and ask that they add support for the javascript (embeddded) template strings highlighting in the HTML/PHP lexer; then, after that got added and released in Scintilla, you would have to convince the Notepad++ Developers to upgrade the Scintilla component from 4.46 to whatever 5.xx it got incorporated into.

        1 Reply Last reply Reply Quote 2
        • Caminho PerfeiçãoC
          Caminho Perfeição
          last edited by

          Thank you very much for the clarification. And forgive me for any inconvenience.
          I will send the question to Scintilla Feature Request.

          Thank you very much!

          1 Reply Last reply Reply Quote 0
          • First post
            Last post
          The Community of users of the Notepad++ text editor.
          Powered by NodeBB | Contributors