• plugins problem

    Locked
    1
    0 Votes
    1 Posts
    2k Views
    No one has replied
  • separate fonts for English and Hindi text

    Locked
    4
    0 Votes
    4 Posts
    6k Views
    V S RawatV

    Insightful method. Really creative. I couldn’t think of it myself.

    though, for a lazy like me, it is too much work, so I would avoid doing all this.

    Thanks a lot for giving such a good method though.

    Rawat

  • 0 Votes
    6 Posts
    2k Views
    L SchererL

    @MAPJe71 YOU ROCK! thank you. My entire project team thanks you.

  • Validator

    Locked
    2
    0 Votes
    2 Posts
    1k Views
    Claudia FrankC

    @Bruce-Coyne

    Well I can say yes because I know that XML Tools can validate against xml schemas
    but I’m unsure if this is what you are looking for.

    Cheers
    Claudia

  • Weird 7.4 issue: unable to save new files

    11
    0 Votes
    11 Posts
    12k Views
    chcgC

    @LAPIII
    https://notepad-plus-plus.org/download/v7.4.2.html is still available, but
    7.5.1 also contains the fixes of the previous releases. So your issue is probably a new issue yet unknown issue. Under https://notepad-plus-plus.org/community/topic/14392/just-another-ordinary-release-7-5-1 there seems to be no such problem report. So you could try to add a more complete description of the problem in that thread or report it at https://github.com/notepad-plus-plus/notepad-plus-plus/issues

  • 0 Votes
    2 Posts
    1k Views
    Claudia FrankC

    @Sainent-eBusiness

    not 100% sure if I understand your question, if it is about having the common nppftp plugin
    included then, no, I prefer to decide by my own which modules I want to install.

    If it is about having a ftp plugin builtin, then no, I think having a strict separation
    about core editor functionality and additional features, as plugins, result in a more stable version for everyone.

    Cheers
    Claudia

  • Sort TextFX - error Nul characters

    Locked
    7
    0 Votes
    7 Posts
    4k Views
    Christie MobleyC

    If I split the big file into two small files then the Line works very well. Hope one day that Notepad early days improve better in the future. Thank Cheers.

  • Notedpad missing from the context of mouse right click

    Locked
    12
    1 Votes
    12 Posts
    15k Views
    ?

    Hi,
    Just wanted to thank ZillaZilla for posting the problem. I learned from what you were having problems with. I had downloaded Notepad++ and expected it to work right off. Through your post I fixed it and it is working. The only problem was I took off work to do this assignment and wasted all day trying to get this to work.

    Thanks again!!

  • How can I highlight all functions in Python?

    Locked
    3
    0 Votes
    3 Posts
    2k Views
    Scott SumnerS

    @Shu-Ting-Pi

    You could use the Mark feature along with a regular expression that would highlight these function calls, but it wouldn’t be automatic…meaning that you would have to “refresh” it occasionally…

  • Opening read-only files

    5
    1 Votes
    5 Posts
    7k Views
    Filipe CostaF

    +1 for this.
    The Clear Read-Only Flag should not be an option and it should behave like that by default.

  • Characters count

    Locked
    5
    0 Votes
    5 Posts
    5k Views
    Scott SumnerS

    @Manlio-Bovecchi

    Wow. Picture is worth the proverbial 10000 words. :-D

    My first thought is: How many bytes does Windows Explorer think this file has? Also 4?

  • copy a part of files in an other file

    Locked
    2
    0 Votes
    2 Posts
    1k Views
    Claudia FrankC

    @Pouemes44

    not directly but you could use find in files function and copy the
    results from the find result window into the new document.

    Cheers
    Claudia

  • Is there a way to restore the undo/redo change history it in Notepad++?

    5
    2 Votes
    5 Posts
    17k Views
    Andrew CutforthA

    AJC Active Backup gives you versioning and change history and I have just written a plugin for Notepad++ to make it even easier to use. You can read about it here:
    AJC Active Backup

  • Save as text file

    Locked
    3
    1 Votes
    3 Posts
    3k Views
    Joe BeckJ

    That seems to have worked, thank you.

  • Publish NP++ in the Windows Store

    11
  • Function List cannot show def or class functions.

    Locked
    2
    0 Votes
    2 Posts
    1k Views
    Scott SumnerS

    @wuming79

    Works for me, what have I missed?

    Imgur

  • Does NPP have any plans to support Microsoft's Language service protocol?

    Locked
    8
    0 Votes
    8 Posts
    4k Views
    linpengchengL

    @Claudia-Frank Thanks.

  • Suggestion: disable updates option at installer

    Locked
    1
    0 Votes
    1 Posts
    799 Views
    No one has replied
  • Yes/No to All in Reload dialog

    Locked
    2
  • Make "Find Next" / "Find Prev" buttons an option

    35
    4 Votes
    35 Posts
    41k Views
    Scott SumnerS

    @guy038 :

    So these are not bad ideas. The biggest problems I see with implementation is the quantity of new proposed new buttons, because:

    screen space is limited, and so many new buttons makes it hard to have enough Alt+symbol (e.g. Alt+a = Replace All button press) key combinations for all of the controls

    Another problem is that currently there aren’t buttons that disappear or change form (within one tab of the Find family dialog) depending upon the state of other controls. I fear that this, and some of the other proposed changes, are just “too much” to change all at once (Notepad++ seems to evolve slowly).

    An additional thing to think about more is the proposed “<<Count” and “Count>>” features. I found that with certain regular expressions you can have matches that “straddle” the caret, thus there can really be 4 different match counts:

    matches that occur globally (anywhere in the file); this is existing functionality matches above the caret position matches below the caret position matches that straddle the caret position

    Here’s some Pythonscript code that will demonstrate. Put the caret in the middle of a word before running this script (CountAboveAndBelowCaret.py):

    import re def CABABC__main(): search_str = r'\w+' search_str = notepad.prompt('enter a find-what regex', '', search_str) if not search_str or len(search_str) == 0: return caret_pos = editor.getCurrentPos() CABABC__main.match_above_count = 0 CABABC__main.match_below_count = 0 CABABC__main.match_global_count = 0 def match_found_above(m): CABABC__main.match_above_count += 1 def match_found_below(m): CABABC__main.match_below_count += 1 def match_found_globally(m): CABABC__main.match_global_count += 1 reflags = 0 editor.research(search_str, match_found_above, reflags, 0, caret_pos) editor.research(search_str, match_found_below, reflags, caret_pos, editor.getTextLength()) editor.research(search_str, match_found_globally, reflags, 0, editor.getTextLength()) notepad.setStatusBar(STATUSBARSECTION.DOCTYPE, '{gc} total matches. {ac} matches above caret; {bc} below.{s}'.format( gc=CABABC__main.match_global_count, ac=CABABC__main.match_above_count, bc=CABABC__main.match_below_count, s='' if CABABC__main.match_global_count == CABABC__main.match_above_count + CABABC__main.match_below_count else ' 1 match straddles the caret.' )) CABABC__main()