Community
    • Login
    1. Home
    2. General Discussion
    Log in to post
    Load new posts
    • Recently Replied
    • Recently Created
    • Most Posts
    • Most Votes
    • Most Views
    • Zillah ZillahZ

      Notedpad missing from the context of mouse right click

      Watching Ignoring Scheduled Pinned Locked Moved
      12
      1 Votes
      12 Posts
      16k 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!!

    • Shu-Ting PiS

      How can I highlight all functions in Python?

      Watching Ignoring Scheduled Pinned Locked Moved
      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…

    • Jonathan RewJ

      Opening read-only files

      Watching Ignoring Scheduled Pinned Locked Moved
      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.

    • Manlio BovecchiM

      Characters count

      Watching Ignoring Scheduled Pinned Locked Moved
      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?

    • Pouemes44P

      copy a part of files in an other file

      Watching Ignoring Scheduled Pinned Locked Moved copy part of a ile in an othre
      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

    • Guero De los caballosG

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

      Watching Ignoring Scheduled Pinned Locked Moved
      5
      2 Votes
      5 Posts
      18k 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

    • Joe BeckJ

      Save as text file

      Watching Ignoring Scheduled Pinned Locked Moved save as bug
      3
      1 Votes
      3 Posts
      4k Views
      Joe BeckJ

      That seems to have worked, thank you.

    • EplakE

      Publish NP++ in the Windows Store

      Watching Ignoring Scheduled Pinned Locked Moved
      11
      1 Votes
      11 Posts
      7k Views
      chcgC

      Ongoing development on this: https://notepad-plus-plus.org/community/topic/14734/notepad-uwp-package-in-windows-store-almost-there/9

    • wuming79W

      Function List cannot show def or class functions.

      Watching Ignoring Scheduled Pinned Locked Moved python
      2
      0 Votes
      2 Posts
      1k Views
      Scott SumnerS

      @wuming79

      Works for me, what have I missed?

      Imgur

    • linpengchengL

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

      Watching Ignoring Scheduled Pinned Locked Moved
      8
      0 Votes
      8 Posts
      4k Views
      linpengchengL

      @Claudia-Frank Thanks.

    • Gerard ForcadaG

      Suggestion: disable updates option at installer

      Watching Ignoring Scheduled Pinned Locked Moved suggestion
      1
      0 Votes
      1 Posts
      877 Views
      No one has replied
    • Александр ЗемцовА

      Yes/No to All in Reload dialog

      Watching Ignoring Scheduled Pinned Locked Moved
      2
      0 Votes
      2 Posts
      1k Views
      Scott SumnerS

      @Александр-Земцов

      Duplicate, see here: https://notepad-plus-plus.org/community/topic/13835/request-yes-to-all-when-open-files-are-changed

    • richluxR

      Make "Find Next" / "Find Prev" buttons an option

      Watching Ignoring Scheduled Pinned Locked Moved
      35
      4 Votes
      35 Posts
      45k 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()
    • Chris763454357C

      Two question: function list and bypass windows 'looking for file' long wait?

      Watching Ignoring Scheduled Pinned Locked Moved
      2
      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.

    • Best Games RusB

      как выключить нижнее подчеркивание в нотепад ???? оно стирает символы

      Watching Ignoring Scheduled Pinned Locked Moved
      2
      0 Votes
      2 Posts
      6k 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».

    • Shyam Kumar khadkaS

      deploying Notepad++ 7.5.1 via configuration manager with few features of notepad++ disabled.

      Watching Ignoring Scheduled Pinned Locked Moved
      1
      0 Votes
      1 Posts
      1k Views
      No one has replied
    • Craig ChaplinC

      WeBack up save idea

      Watching Ignoring Scheduled Pinned Locked Moved
      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…

    • jiri veselyJ

      remember opened tabs of my choosing

      Watching Ignoring Scheduled Pinned Locked Moved
      5
      0 Votes
      5 Posts
      2k Views
      gstaviG

      Try joining forces with the guy from that post.

    • Martin BrändliM

      Brainf* interpreter in RegEx only (find/replace)

      Watching Ignoring Scheduled Pinned Locked Moved
      1
      0 Votes
      1 Posts
      1k Views
      No one has replied
    • CAG HotshotC

      Why does Notepad ++ Search/Replace feature continue to fail?

      Watching Ignoring Scheduled Pinned Locked Moved
      2
      0 Votes
      2 Posts
      1k Views
      Scott SumnerS

      @CAG-Hotshot

      See my first post in this thread: https://notepad-plus-plus.org/community/topic/14567/search-and-replace-failed

    The Community of users of the Notepad++ text editor.
    Powered by NodeBB | Contributors