• Suddenly asking me to save on exit

    Locked
    3
    0 Votes
    3 Posts
    6k Views
    Scott EdwardsS

    That fixed it, thanks!!

  • 0 Votes
    2 Posts
    1k Views
    Claudia FrankC

    @Pavel-Levdik

    personally I would post a feature request here and a more detailed description about how it actually should work.
    If I had to think about the request and have already some questions in mind, like
    should it preserve on npp shutdown, configurable in number, based on access time or how often
    a file has been opened …, I probably would not spent time coding it if I don’t think it is useful to me too.

    Can’t say for sure that this helps to get it implemented but certainly can’t hurt.

    Cheers
    Claudia

  • User defined language styler font settings - am I missing something?

    Locked
    2
    0 Votes
    2 Posts
    1k Views
    Claudia FrankC

    @Daniel-Crichton

    if I understand correctly then you do have set a global font, if this is the case, then
    yes, it is expected behavior as this is what the setting should do.

    Cheers
    Claudia

  • Feature request - move tab when opening file from workspace pane

    Locked
    2
    0 Votes
    2 Posts
    1k Views
    chcgC

    Have you tried the document switcher (Strg+Tab), similar to windows switching applications.

  • Feature request - Hide lines that match some criteria

    Locked
    3
    1 Votes
    3 Posts
    3k Views
    chcgC

    @Juan-Jose-Vazquez-Perez

    Maybe https://sourceforge.net/projects/analyseplugin/ is the right thing for your needs for log file analysis.

  • how to turn off display of CR LF at end of each line

    Locked
    4
    1 Votes
    4 Posts
    11k Views
    Claudia FrankC

    @Murray-Sobol

    it has been reported that if the file is big and automatic backup is used that it might happen
    that you see random carriage returns every now and then.
    Maybe that is what happened to you as well.

    Cheers
    Claudia

  • Process explorer shows npp instances remain after closing

    Locked
    4
    0 Votes
    4 Posts
    1k Views
    LaraSQPL

    The NppMenuSearch plugin was indeed the culprit. Once uninstalled the problem went away.

    I’ll keep an eye out just in case but the matter seems resolved.

    Thank you for the quick replies.

  • BUG - Export / Import of plugin, buttons have opposite functionality

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    Claudia FrankC

    @Stanislav-Mihálik

    which version are you using, as Notepad++ v7.5.1 doesn’t seem to have this issue.
    In addition, could it be that you use a customized (translated) language
    and someone has incorrectly translated the words?

    Cheers
    Claudia

  • -1 Votes
    1 Posts
    913 Views
    No one has replied
  • Codepages not correctly saves

    Locked
    4
  • Notepad++ start-up from command line (options)

    Locked
    3
    0 Votes
    3 Posts
    2k Views
    pnedevP

    Hi @Claudia-Frank ,

    Thanks for the feedback :)

    Cheers

  • Material Design Theme for Notepad++

    Locked
    2
    3 Votes
    2 Posts
    11k Views
    HiSandyH

    Screenshot

  • DSpellCheck and user defined language

    Locked
    3
    0 Votes
    3 Posts
    1k Views
    Lionel LagardeL

    Thanks. I did not check the DSpellCheck project page. My bad. Sorry for the noise.

  • Auto update

    Locked
    2
    0 Votes
    2 Posts
    1k Views
    Scott SumnerS

    @Владимир-Орлов

    I hate update notifier at start up.

    So turn it off.

    …keep software updated. Like on smartphone. Why dont you make this updater silent?

    Likely if this were done, you’d be a frequent poster here…and you’d be really really angry.

  • Theme resets after switching to administrator mode

    Locked
    7
    1 Votes
    7 Posts
    4k Views
    Henry BurrowsH

    Sorry, didn’t see your reply in time; however, a re-install and reboot has resolved the issue.

    Thanks again!

  • Feature Request: Could notepad++ just keep the selection part

    Locked
    3
    0 Votes
    3 Posts
    1k Views
    Claudia FrankC

    ignore my comment - overlooked that this is a feature request.

    Probably a better place to ask for this enhencement is at github.

    Cheers
    Claudia

  • useless macro?

    Locked
    4
    0 Votes
    4 Posts
    2k Views
    PeterJonesP

    @Angelica-Bartoloni isn’t overly clear (but maybe English isn’t her native language), but I read the description of the ImgTag plugin in the Plugin Manager: it appears to allow you to use a File|Open-style dialog to select images from your drive, and then insert the appropriate <IMG> tag in the HTML document you are editing in Notepad++.

    Given that description, then it could probably be automated inside NPP… but probably not with the macro-recording tool.

    The ways that I can think of:

    Use the ImgTag plugin as normal. Then use a regex-based search-and-replace to update the title and alt fields. If the OP gave us the example output HTML from ImgTag, the regex experts could easily customize to fit the OP needs.

    Use PythonScript to automate the ImgTag plugin, and edit the output as it’s going. (I don’t think this really has any benefit over #1)

    Use PythonScript to completely replace the ImgTag functionality: have the .py call a File|Open-style dialog itself, and then generate the HTML <img> tags, with all the fields that are desired. (For simplest case, this might work; but if OP is relying on getting/setting the width and height tags via ImgTag as well, then it would probably require accessing other libraries through the .py, at which point, #1 is probably simpler again.)

    I think probably #1 is the easiest.

    Assuming ImgTag would return the following if you selected a.png, b.png, and c.png: (and assuming that “alt field is blank” means there is the alt attribute but no string inserted, and that “no title field” means that there isn’t a title attribute at all):

    <img src="./a.png" width=640 height=480 alt=""> <img src="./b.png" width=1280 height=720 alt=""> <img src="./c.png" width=1920 height=1080 alt="">

    And assuming @Angelica-Bartoloni wants

    <img src="./a.png" width=640 height=480 alt="./a.png" title="./a.png"> <img src="./b.png" width=1280 height=720 alt="./b.png" title="./b.png"> <img src="./c.png" width=1920 height=1080 alt="./c.png" title="./c.png">

    Then I would use something like

    Find What = (?-s)src="([^"]*)"([^>]*)alt=""> Replace With = src="$1"$2alt="$1" title="$1">

    If the order of attributes is different, or ImgTag uses different quote characters (single quotes, for example), or if it uses xhtml-style <img ... />, then the regular expressions could be changed to accommodate.

    Angelica, please give us actual example output from ImgTag, and the exact desired final result: we can tweak the regex as necessary. Try to think of edge cases: do any of your filenames have quotes or apostrophes embedded, such as Mr. D'Angelo's "favorite" picture.png, or any other special characters that you think might influence things? Does ImgTag always output attributes in the same order? Does it include the alt="", or alt='', or no alt at all; similar for title? What other helpful information can you give us? (The more details you give of “what you have” vs “what you want”, the easier it is for us to help you find a solution.)

    <edit>: also, we need to know if you have other <IMG> tags already in the document. If so, then before doing the search-and-replace, you’ll have to select just the ImgTag-based <IMG> tags, and use the ☑ In Selection option, to avoid messing up other images.</edit>

  • Multi lines selection in longer file

    Locked
    2
    0 Votes
    2 Posts
    990 Views
    Scott SumnerS

    @Pavol-Pusztai

    Use the Begin/End Select feature (see Edit menu).

    Here’s how:

    Go to your first line of interest (possibly using Search (menu) -> Go to…) Invoke Begin/End Select. Go to your second line of interest (possibly using Search (menu) -> Go to…) Invoke Begin/End Select again.

    Your desired range should now be selected/highlighted.

  • Feature Request: filter files in "Folder as Workspace" by path

    Locked
    2
    1 Votes
    2 Posts
    2k Views
    Jim DaileyJ

    @HonoredMule

    I think the Open File In Solution, Solution Hub, and Solution Hub UI plugins may do what you want in a somewhat different way. With them you can type parts of filenames and, if you want, pathnames and it displays the matching ones and allows you to select one to open in the editor.

    Check it out at http://npp.incrediblejunior.com/

  • Issues running versions after v 7.5.1 on Wine

    Locked
    3
    0 Votes
    3 Posts
    1k Views
    Claudia FrankC

    @Danie-de-Jager

    just updated to the latest stable verison 3.0 and can use npp 7.5.4

    Cheers
    Claudia