• double-click hyphen

    4
    0 Votes
    4 Posts
    3k Views
    Claudia FrankC

    Hello Andrew,

    I described here how it could be solved.
    Basically, you need to register a callback which gets called when you open a new tab or switch tabs and extend the wordchars accordingly.

    Cheers
    Claudia

  • Delete empty lines

    Locked
    5
    0 Votes
    5 Posts
    26k Views
    decodermanD

    @Andrzej-Kmicic said:

    Edit -> Line Operations -> Delete Empty Lines

    That’s how I do it too, it’s the quickest way.

  • Saves extra versions of file -

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    Stephen AustinS

    I’ve found that the problem was with Samsung Sync, and the fact that I was using Dropsync with Dropbox. Not Notepad++ at all. If anyone else has the same problem then I hope this helps.

  • Notepad++ doensn't start when doubleclicking files

    Locked
    5
    0 Votes
    5 Posts
    6k Views
    MatsM

    Hello Claudia!

    [HKEY_CURRENT_USER\Software\Classes\Notepad++_file] doesn’t exist.

    Inside npp, I removed npp association with .txt, .log & .xml, then I added it again. After that, .txt and .log works but not .xml!
    Then I rightclicked a .xml file, choosed “open with” and select always use npp. After that, .xml also works. I did try that before, the new thing was to remove and add association in npp first.
    So the problem is solved, but there is still a lot of questions how this could happend.
    Thanks for helping me.
    Mats

  • 0 Votes
    2 Posts
    2k Views
    Claudia FrankC

    Hello @مشاري-الخالدي ,

    can you upload a screen shot with this error message?
    Which operating system do you use?
    Which npp version do you want to run?

    Cheers
    Claudia

  • Change Multiple Values at Once

    Locked
    7
    0 Votes
    7 Posts
    8k Views
    Claudia FrankC

    YEESSS - CTRL - aaaahhhh

    Seems now are my confusing days ;-)))

    Cheers
    Claudia

  • Highlight HTML and CSS

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    Claudia FrankC

    Hello @Adam-Schwartz,

    I don’t think I understood your question correctly
    because if you choose HTML from language menu it should already
    highlight html and css code.

    What did I miss?

    Cheers
    Claudia

  • Column editing - go to bottom of the file

    Locked
    3
    0 Votes
    3 Posts
    6k Views
    Scott DodsonS

    Exactly what I was looking for, thank you.

  • Convert many files to encoding = utf-8 ?

    Locked
    2
  • custom syntax highlighting [JS]

    Locked
    13
    0 Votes
    13 Posts
    11k Views
    Wolf WarW

    @Claudia-Frank
    ok, tnx again
    at least I didn’t screw it :)
    cheers

  • Function List for VHDL

    Locked
    7
    0 Votes
    7 Posts
    9k Views
    Dirk HölscherD

    Thanks for your help.
    my current version looks like this:

    <parser id="vhdl_syntax" displayName="VHDL" > <function mainExpr="^[\t ]*([\w]+[\t ]*:)?([\t ][\w]+[\t ])*[\t ]*(COMPONENT|PROCESS|ENTITY|ARCHITECTURE)[\t ]*[A-Za-z0-9_\(\), ]*(?!\;)$" displayMode="$functionName"> <functionName> <nameExpr expr="[\w].*" /> </functionName> </function> </parser>

    Both versions have theirs flaws and advantages, so I think I will combine them somehow to optimise results…

  • Simple replace / to hard for me

    Locked
    5
    0 Votes
    5 Posts
    3k Views
    Sascha HolligerS

    worked! Thanks Claudia!

  • How do I compare two notes in the tab bar? to see what has changed?

    Locked
    3
    0 Votes
    3 Posts
    3k Views
    Kevin RandallK

    Hello @Claudia-Frank,
    Thank you so much for this. I was sure it was something I was overlooking. This worked perfectly!

    Again Thank you,
    Kevin

  • 0 Votes
    4 Posts
    6k Views
    OtielO

    If this isn’t what you want you can change the selected text attribute.
    Open Style Configurator -> Global Styles and change background color for selected text color

    That will do it, thanks!

  • popup help annoyance

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    Claudia FrankC

    Hello @Anthony-Dias-Souza,

    about which pop-up do you talk? Can you make a screenshot and upload it (services like imgur.com might be helpful))

    Cheers
    Claudia

  • 0 Votes
    2 Posts
    2k Views
    Claudia FrankC

    Hello @Fields-Barley,

    you are correct, from the dialog this isn’t possible.
    I described here a way what is needed to make this working.

    Cheers
    Claudia

  • Notepad++ 6.8.7: I can't open .txt files!

    16
    0 Votes
    16 Posts
    23k Views
    Claudia FrankC

    Hello @MSimcox2

    thank you very much for sharing this and good job figuring this out.

    Cheers
    Claudia

  • How do I eliminate italics in HTML with Javascript files?

    Locked
    4
    0 Votes
    4 Posts
    3k Views
    Claudia FrankC

    Dave,

    1st - only a fool wouldn’t have asked the question.
    2nd - sorry, I had to retype the answer 3 times as I wasn’t sure about the wording, like right now. ;-)
    3rd - so you made me feel I did something helpful to others - thank you :-D

    Cheers
    Claudia

  • 0 Votes
    3 Posts
    2k Views
    V FrenkelV

    I second that request.
    Always confuses me.

  • RTL Interface: Change some elements to LTR

    Locked
    5
    0 Votes
    5 Posts
    4k Views
    YaronY

    Hello Claudia,

    Thanks again. I highly appreciate your time and goodwill.

    But from what I understand, creating a window with WS_EX_LAYOUTRTL should be prefered and npp
    uses it already for a couple of windows.

    Indeed.
    This is how NPP changes the editor text direction:

    void ScintillaEditView::changeTextDirection(bool isRTL) { long exStyle = ::GetWindowLongPtr(_hSelf, GWL_EXSTYLE); exStyle = isRTL ? exStyle | WS_EX_LAYOUTRTL : exStyle&(~WS_EX_LAYOUTRTL); ::SetWindowLongPtr(_hSelf, GWL_EXSTYLE, exStyle); }

    I have managed to flip the Status Bar entire layout with WS_EX_LAYOUTRTL etc.; changing only parts of an element seems to be more tricky.

    Best regards.