• 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
    812 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
    43k 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()
  • 0 Votes
    2 Posts
    1k Views
    MAPJe71M

    As for Q1: Function List shows the functions defined in the current file only. For any additional functionality you could try some of the other available plugins (e.g. TagLEET, TagsView, SourceCookifier) or write your own plugin.

  • 0 Votes
    2 Posts
    5k Views
    dailD

    Press the “insert” key on your keyboard. This will change the cursor from “over write” mode to “insert” mode.

    Via Google translate:

    Нажмите клавишу «Вставить» на клавиатуре. Это изменит курсор из режима «over write» в режим «insert».

  • 0 Votes
    1 Posts
    1k Views
    No one has replied
  • WeBack up save idea

    Locked
    2
    0 Votes
    2 Posts
    1k Views
    Scott SumnerS

    @Craig-Chaplin

    You should experiment with the Settings (menu) -> Preferences… -> Backup (box on left) -> Backup (groupbox) options…

  • remember opened tabs of my choosing

    5
    0 Votes
    5 Posts
    2k Views
    gstaviG

    Try joining forces with the guy from that post.

  • Brainf* interpreter in RegEx only (find/replace)

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