• 0 Votes
    5 Posts
    2k Views
    chcgC

    Which type of installation do you use?

    Notepad++ Installer 32-bit x86: Take this one if you have no idea which one you should take.
    Notepad++ zip package 32-bit x86: Don’t want to use installer? Check this one (zip format).
    Notepad++ 7z package 32-bit x86: Don’t want to use installer? 7z format.
    Notepad++ minimalist package 32-bit x86: No theme, no plugin, no updater, quick download and play directly. 7z format.

    The autoupdater is named gup.exe under Notepad++\updater and has a corresponding config file gup.xml. Gup.xml could be modified to avoid that the update page could be found or could be removed as in the minimalist package.

    The gpup.exe in the same folder is the updater for the plugin manager.

  • 1 Votes
    3 Posts
    2k Views
    Eric GrudinE

    Ok, thanks.

  • Pasting formatted text copied from webpage in Firefox

    Locked
    3
    0 Votes
    3 Posts
    2k Views
    Claudia FrankC

    @Toni-Graham

    I’m a bit confused - does this mean you want to have the html source of that side?
    If so, right click on the page and choose view source, than copy/paste to notepad++.

    Cheers
    Claudia

  • file associations // open with

    5
    0 Votes
    5 Posts
    3k Views
    bub xyzB

    @Claudia-Frank

    Running npp as admin worked. I have never set it up that way and did not know. Thanks for your help :)

  • Regex: how to remove spaces that are not followed by letters or numbers

    12
    0 Votes
    12 Posts
    6k Views
    Js jSJ

    ouch!!

    try opening the original pdf file using Notepad++
    you may get lucky, and the contents may be cleartext (not compressed)

    otherwise, try a different pdf to txt converter or try ocr software

    good luck

  • 0 Votes
    2 Posts
    3k Views
    gstaviG

    AFAIK,
    Global Default is the basis. Usually Default Style is the only place where you select a mono space font and its size which will be used by all other styles. Language specific styles will override the Default by applying color and background but most of them do not change the font itself or its size. Sadly it seems that background is always overridden by language styler instead of using the default.
    Global Override has specific enablers that can override specific aspects for all documents regardless of language style. You can force dark background for everything but since language specific stylers will still use dark fonts you will get hard to read dark on dark and possibly even invisible black on black. I never used it.

    Respecting the windows scheme is not practical in this case since you need to use ton of different colors during syntax highlighting. Windows scheme is mainly for single color on single background. I don’t remember Visual Studio respecting it but maybe I just never tried.

    You do have several downloadable NPP schemes that are maintained with hard work.

  • Where did the "Help" / documentation go?

    Locked
    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • Restore PRIOR editing tab window upon closing another

    Locked
    1
    0 Votes
    1 Posts
    976 Views
    No one has replied
  • Own language highlighting with regex expressions?

    4
    0 Votes
    4 Posts
    8k Views
    Scott SumnerS

    @Manolo-Müller-Menendez

    I see you’ve posted exactly one time, so maybe the odds are good that you aren’t lurking and just waiting on an answer to your question, but since @Js-jS has refreshed this old thread, and @Claudia-Frank just yesterday posted something that may work to solve it, have a look at:

    https://notepad-plus-plus.org/community/topic/13183/poorman-regex-based-styler-lexer

  • 0 Votes
    24 Posts
    17k Views
    cmeriauxC

    You should keep original Python then install Jupyter with ‘pip installer’ that is provided with python

    http://jupyter.org/install.html
  • Save in color?

    2
    0 Votes
    2 Posts
    2k Views
    Js jSJ

    what happens when you save the html file in NPP and then open in web browser ?

  • can some one help me unscramble a PNG??? need help

    2
    0 Votes
    2 Posts
    2k Views
    Js jSJ

    you have to google the “png file format specification”, then open your png file using Notepad++

    using the hex plugin, check that the format of your png file matches the specification.

    if it does not match, then make the necessary corrections.

    keep saving after every correction, and viewing the result.

    using this method, it should take no more than 20 years to fix your file, depending on the size of the file, of course.

    or …

    you could submit your post someplace that deals with file recovery, not a place that discusses text editing.

  • how to save character set ?

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    gstaviG

    Notepad++ only allow saving a document that was modified.
    Seems that encoding change is not considered a modification.
    Just add a space and delete it.

  • Help me plssssss

    2
    0 Votes
    2 Posts
    2k Views
    Js jSJ

    put the cursor to the beginning of text, just before the “1”

    press the delete key 24 times

    those awful numbers should be gone

    hope this helps

    seriously … you did not describe the problem at all

  • Can HTML and CSS be in one document(no importing)?

    2
    0 Votes
    2 Posts
    1k Views
    Js jSJ

    this appears to me an html question

    http://www.w3schools.com/tags/tag_style.asp

    if you wrote poetry using Notepad++, would you post a question here regarding prose?

  • Displaying superscript words

    2
    0 Votes
    2 Posts
    3k Views
    Js jSJ

    lol … it is in japanese

    this is what copied from webpage:
    しかし被害は出ているものの“精錬武救の聖神鎧イスラブ・レス・ラーグ”を始めとする様々な【救世主】

    the superscript is just to the right of 鎧 symbol, so it does copy

    here it is moved to previous line

    . . . . . . . . . . . . イスラブ・レス・ラーグ
    しかし被害は出ているものの“精錬武救の聖神鎧”を始めとする様々な【救世主】
    (i could not get the superscript text to display in the right place, so i added dots for filler)

    the text size would be the same as the rest of the document though.

    your best bet may be to copy and edit the html file

    here is part of the html from that webpage

    <br />  しかし被害は出ているものの“<ruby>精錬武救の聖神鎧<rt>イスラブ・レス・ラーグ</rt></ruby>”を始めとする様々な【救世主】固有の【魔法】により、連合軍の兵士達はまるでアンデッドのようなタフネスを発揮していた。<br />

    here is an extract of the main text and the associated superscripted text

    <ruby>精錬武救の聖神鎧<rt>イスラブ・レス・ラーグ</rt></ruby>

    the <ruby> tag encloses the text and its superscript

    i guess that you could insert a blank line and copy the superscript from the next line into the blank line

    i hope that this helps a little

  • how to create java calculator using notepad++

    2
    -2 Votes
    2 Posts
    3k Views
    Js jSJ

    i think that you need to go to a java oriented website for an answer to your question

    notepad++ is a text editor that you can use to write java code, once you know what the code is.

  • Files randomly becoming protected, requiring Administrator mode

    4
    0 Votes
    4 Posts
    4k Views
    Js jSJ

    that has happened to me when i edited a text file on a flash drive, and the flash drive became unplugged. the message showed up when i tried to save. (ctrl-s)

    if you are working on a network drive, it may be that the file location is becoming unavailable.

    also could happen when another program accesses your file in an exclusive mode.

    virus scanner maybe?

  • Instant crash at launch

    6
    0 Votes
    6 Posts
    8k Views
    chcgC

    nppftp with which version of n++? Current 7.3.1? Could you add the debug info like above about the used vesions and the installed plugins apart from nppftp.

  • Link: "Get More Plugins" doesn't work

    Locked
    1
    0 Votes
    1 Posts
    1k Views
    No one has replied