• 0 Votes
    2 Posts
    2k Views
    Meta ChuhM

    @Bruno-Guillemette

    plugin manager is an external project

    this issue is known and will probably occur if the checksum of the desired plugin dll at the current plugin manager download location differs from the checksum that is currently in the plugin manager’s list

    maybe it helps, if you file another issue report about this at the plugin manager’s project site
    https://github.com/bruderstein/nppPluginManager/issues

  • How to make all data in one line

    Locked
    3
    0 Votes
    3 Posts
    252k Views
    djmcgD

    Hello guy038
    The first option`s works perfectly.
    Thank You.

  • Paste into column stopped working

    4
    0 Votes
    4 Posts
    3k Views
    alanrewA

    @Meta-Chuh

    Thanks very much for your help - I’d completely forgotten about the need to use the ALT key while copying the ‘1 and 2’ column.

    Thank goodness this isn’t a bug: I rely on np++ for my job (which is why I donate :-)).

    Kind Regards,

    Alan

  • Looking for complete change logs.

    Locked
    2
    0 Votes
    2 Posts
    1k Views
    Claudia FrankC

    @Al-Howarth

    via github and the history of a file.

    Cheers
    Claudia

  • Why R syntax cannot be highlighted?

    Locked
    3
    0 Votes
    3 Posts
    2k Views
    wsadlxxW

    Aha!
    Thank you very much!

  • Cursor in the middle of letters/character

    Locked
    3
    0 Votes
    3 Posts
    2k Views
    John HillJ

    Thanks for the response! So I have a 4k screen and the scaling isn’t great so I changed it to “override High DPI scaling.” And this caused the issue. Very weird.

  • Mac encoding

    14
    0 Votes
    14 Posts
    18k Views
    J. JonesJ

    I did find an Encoding option for it, but it’s buried where you wouldn’t expect!

    Encoding > Character Sets > Cyrillic > Macintosh

    Presto, all the Õ symbols become symbols the way they were typed on the Mac!

  • Text over the table? How do I fix that?

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    cipher-1024C

    This is an html question, not a Notepad++ question. This should be asked in an html forum, not here. Now, do you promise to only ask NPP questions here? OK, great.

    Caption tags go immediately after the table tag, not in the head. I don’t think that broke anything, but pop it up a line anyway.

    I’ve found floats to be irritating and unpredictable so that’s not the first place I go for layout.

    body {background-color: skyblue;} table.infobox { border-style: solid; border-width: 1px; border-spacing: 3px; margin-bottom: 6.16667px; margin-top: 6.16667px; margin-left: 12.3167px; margin-right: 0px; padding: 2.46667px; display:inline-block; } td {text-align: center} p {width:200px; display:inline-block; vertical-align: top; }

    There may be better ways to do this, but I think it does what you asked for.

    Robin should pull his pants up a tiny bit.

  • Adding an .xml pack with keywords to the Lua language

    Locked
    3
    1 Votes
    3 Posts
    2k Views
    GoredionG

    Hi

    Thanks for replay and help ! it works for me too and i think its enough for now :)

  • Can not find my old question. Adding plugin for Spell check

    Locked
    3
    0 Votes
    3 Posts
    1k Views
    David WimmerD

    Ok, thank you so much sir

  • Application crash / unresponsive with find/replace

    Locked
    2
    0 Votes
    2 Posts
    1k Views
    Claudia FrankC

    @Alex-Roberts

    What kind of files are modified?
    Are plugins installed which may interfere ?
    Is a lexer, syntax highlighting active?
    Do you search/replace unicode text?
    Is this reproducible always? If yes, can you share the file?

    Cheers
    Claudia

  • Very simple Language definition (ZPL)

    Locked
    2
    0 Votes
    2 Posts
    3k Views
    Jim DaileyJ

    @Wayne-Ivory
    I don’t think there is any way to do what you’d like other than listing the individual commands.

  • Problem with the search and replace function

    Locked
    3
    0 Votes
    3 Posts
    1k Views
    Wolf KürschnerW

    YES!!

    Stupid me…

    Works well now!

    Thanks a lot!!
    :-) Wolf
    (By the way: Is there a help file somewhere? Beside foum and “Command LIne Arguments”?

  • ShellExecute failed (2): Is this command Correct?

    Locked
    3
    1 Votes
    3 Posts
    3k Views
    Albert DonderoA

    I got this same error, I marked Notepad++ to run as “Administrator” when I right click on a text file and select “Open in Notepad++”, I get this same error.

    When I try to save files, I get following message and have to click “Yes” so I can save file.

    “The File cannot be saved and it may be protected. Do you want to launch Notepad++ in Admin mode?”

    Would be nice to be able to setup the EXE to run as administrator and not have to worry or deal with the modal when trying to save.

  • Unable to reformat XML/JSON files opened from email

    Locked
    2
    0 Votes
    2 Posts
    1k Views
    Claudia FrankC

    @Matt-Storr

    sorry, but I don’t understand what you are doing.
    Does it mean you double click or open an attachment
    in your mail application like thunderbird/outlook and
    then npp starts and shows the content of the attachment?
    Now you use xml tools for reformatting and try to save it?
    But without reattaching it, it wouldn’t update in the mail.

    Cheers
    Claudia

  • ASCII Hex of Current Character

    Locked
    2
    0 Votes
    2 Posts
    3k Views
    Scott SumnerS

    @iamtestplay

    I don’t believe this is possible…without scripting. With scripting (e.g. Pythonscript plugin), however, it is fairly straightforward–for the simplistic case of ASCII and not Unicode–if you don’t mind part of the statusbar being utilized for the display:

    Imgur

    Script:

    def callback_sci_UPDATEUI(args): c = editor.getCharAt(editor.getCurrentPos()) try: info = "HEX:{0:02X} DEC:{0} '{1}'".format(c, chr(c) if c not in [13, 10, 0] else 'LINE-ENDING' if c != 0 else 'END-OF-FILE') except ValueError: info = "HEX:?? DEC:?" notepad.setStatusBar(STATUSBARSECTION.DOCTYPE, info) editor.callback(callback_sci_UPDATEUI, [SCINTILLANOTIFICATION.UPDATEUI])
  • How make .nfo files use my HTML style ?

    Locked
    3
    0 Votes
    3 Posts
    4k Views
    Rob StowR

    Many thanks - it worked once I went to the other thread you referenced (about the .ss files) and saw the note to clear the recent files list. I had already edited my langs.xml and stylers.xml files with NotePad++ but checked them with MicroSoft’s NotePad anyway just to make sure my changes had stuck when I exited NP++.

  • UDL highlighting a string

    Locked
    8
    0 Votes
    8 Posts
    3k Views
    Claudia FrankC

    @Daniel-Scholz

    afaik, ((EOL)) is the only one,
    but to answer the question, I don’t know any other than the source code.

    Cheers
    Claudia

  • Line Indent 2 spaces

    Locked
    6
    1 Votes
    6 Posts
    16k Views
    Scott SumnerS

    @Joey-de-Keizer

    FWIW, if I wanted to insert a blank column(s) throughout a range (especially a large range) of lines–without relying on the tab settings in effect, here’s what I’d do:

    move the caret to the first position of the first line to affect invoke Edit (menu) -> Begin/End Select (sadly, this useful feature has no default shortcut key!) move the caret to the first position of the last line to affect press Shift+Alt+RightArrow press Shift+Alt+LeftArrow invoke Edit (menu) -> Begin/End Select again

    This should get you a “thin caret” in front of the first column over the span of lines. From there it is easy to insert spaces on each and every line by pressing the spacebar the appropriate number of times.

    Of course, if you range is small, then simply:

    move the caret to the first position of the first line to affect press Shift+Alt+DownArrow repeatedly to define the “thin caret” over the desired line range.
  • LESS - is there a plugin that allows auto-completion?

    Locked
    3
    0 Votes
    3 Posts
    2k Views
    Lukasz kowalL

    Thank you. This helped me a lot. I created a LESS XML file from my CSS XML file and now auto-completion for LESS is working.
    I will use this method in the future to add new words for auto-completion for my other languages, for example my CSS lacks CSS3 tags.

    Thanks for help.