• 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
    10k 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
    2k 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.

  • switching off annoying debug messages

    Locked
    3
    0 Votes
    3 Posts
    2k Views
    Zs LZ

    OK, thanks. It seems the culprit is the HEX-Editor plugin.

  • How to point a file in a batchfile with a space in the filename

    8
    0 Votes
    8 Posts
    5k Views
    Claudia FrankC

    Hi Harm,

    I may be wrong but I don’t think it is the quote, well, it isn’t the cause of the problem.
    From cmd shell point of view all three commands should work but the main difference is the backslash
    after the disk letter.
    Test 1 and 2 are the same but 3 is different in the meaning how path should be interpreted.

    From shells point of view

    p:“foto-archief harm\0 Testomgeving”

    means that there is a subdirectory foto-archief harm which again has a subdirectory 0 Testomgeving on drive p: relative
    to the current directory.

    Let’s assume that I want to get a list of all txt files in the python\npp directory which is a subdirectory of d:\scripts.
    I could easily do this by executing of of the following dir commands

    D:\scripts>dir /B python\npp\*.txt dummy.txt D:\scripts>dir /B "python\npp\*.txt" dummy.txt D:\scripts>dir /B "d:python\npp\*.txt" dummy.txt D:\scripts>dir /B d:"python\npp\*.txt" dummy.txt

    but what I can’t do is using this form

    D:\scripts>dir /B d:\"python\npp\*.txt" The system cannot find the path specified. D:\scripts>dir /B "d:\python\npp\*.txt" The system cannot find the path specified.

    Because the latter are absolute paths. A absolute path begins either

    with two backslashes (UNC) with a disk letter, colon AND a backslash with a backslash.

    Your notation p:foto-archief harm is relative. So if your current directory is p:\dir1\dir2
    and there is a subdirectory foto-archief harm a dir p:foto-archief harm\ would do a listing in p:\dir1\dir2\foto-archief harm.
    So if you do a fourth test

    Robocopy p:\"foto-archief harm\0 Testomgeving" D:\backup\test /MIR /LOG+:H:\Dos_map\TESTLogfile.txt

    you will see it works as well.

    Cheers
    Claudia

  • How do i dictate the size of a program automatically?

    Locked
    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • How do i change the size of the program i made

    Locked
    1
    0 Votes
    1 Posts
    2k Views
    No one has replied
  • Running C program using gcc

    Locked
    2
    0 Votes
    2 Posts
    4k Views
    Claudia FrankC

    Hello @Kaushal-Dokania,

    can gcc be found in path? If not you have to set the directory.
    Is the output a console application? If so, you need to call cmd shell together with compiled exe.

    For such thing I would recommend to install nppExec plugin which could do this in one run
    and if I remember correctly there even was an example how to do it with gcc.

    Cheers
    Claudia

  • How to edit php file

    Locked
    2
    0 Votes
    2 Posts
    3k Views
    dailD

    it claimed to be a WYSIWYG editor which could edit PHP files

    This definitely is not the case unless you saw this from some sort of plugin for it (but I don’t know any that does this type of thing). To run PHP you need a PHP server to execute it and spit out the HTML.

  • Exam questions?

    4
    0 Votes
    4 Posts
    3k Views
    Ernest AricoE

    @Claudia-Frank

    I am teaching a course on teaching students how to create Web pages and sites using Notepad++. We need to have a final exam/project at the completion of the course.