• Login
Community
  • Login

Notepad++ v8.4.4 - Happy Users' Edition

Scheduled Pinned Locked Moved Announcements
50 Posts 18 Posters 18.6k Views
Loading More Posts
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • N
    Not Saying @donho
    last edited by Aug 3, 2022, 5:31 PM

    @donho said in Notepad++ v8.4.4 - Happy Users' Edition:

    @Not-Saying

    Thank you for your debug info (via the private message).
    However, I cannot reproduce the bug at all.
    Could you provide the step by step instructions please?

    Sure! I just figured out a way to do it again:

    1. Do a Find In Files search for something you know won’t be found.
    2. Do a Find In Files search for something you know will find multiple files.
    3. Do a Find In Files search for something you know won’t be found.
    4. Do a Find In Files search for something you know will find multiple files.
    5. Observe there are no open/close icons for the results that found no files.
    6. Collapse all the results.
    7. Delete the result from step 3 (Delete key).
    8. You now have the result I described above.

    I can tell from the repro steps and gui behavior this is going to be obnoxious to solve. You’ve got two sets of objects, one that describe the gui state and the other the results. They are out of sync with each other. :(

    D 1 Reply Last reply Aug 6, 2022, 9:13 PM Reply Quote 0
    • D
      donho @Not Saying
      last edited by Aug 6, 2022, 9:13 PM

      @Not-Saying

      Thank you for providing the step by step instruction. However, I can’t still reproduce it by following your instructions:

      213ffd82-9a68-4d51-97c8-f721652fdce5-image.png

      @Yaron
      Can you reproduce it in your PC?

      1 Reply Last reply Reply Quote 0
      • D
        donho @Yaron
        last edited by Aug 6, 2022, 9:38 PM

        @Yaron @SeagramFR
        Under Windows 11, it works fine.
        I’ll check the code.

        Y 1 Reply Last reply Aug 6, 2022, 11:22 PM Reply Quote 1
        • Y
          Yaron @donho
          last edited by Aug 6, 2022, 11:22 PM

          @donho & @Not-Saying,

          https://github.com/notepad-plus-plus/notepad-plus-plus/issues/11995

          @donho & @SeagramFR,

          https://github.com/notepad-plus-plus/notepad-plus-plus/issues/11996


          Not being able to edit posts here is slightly inconvenient.
          I’ve preferred opening new issues on GitHub.

          1 Reply Last reply Reply Quote 3
          • R
            Ray Parker
            last edited by Aug 9, 2022, 5:58 PM

            For some reason my plugin, NPPTextFX, disappeared. It still exists as a folder and DLL in the plugins folder but does not appear as an installation option. Has this plugin been superseded?

            A 1 Reply Last reply Aug 9, 2022, 6:16 PM Reply Quote 0
            • A
              Alan Kilborn @Ray Parker
              last edited by Aug 9, 2022, 6:16 PM

              @Ray-Parker

              Possibly see HERE.

              1 Reply Last reply Reply Quote 0
              • P
                Paul Harouff
                last edited by Aug 11, 2022, 2:24 PM

                Sometimes I use Notepad++ to edit long plain text files (not code) and I need a way to mark where the page breaks are. How hard would it be to add the capability to highlight line numbers (e.g., put a dot next to 64, 128, 192, etc.)? Or is there a plugin that already adds this capability?

                Thanks.

                A 1 Reply Last reply Aug 11, 2022, 2:30 PM Reply Quote 0
                • A
                  Alan Kilborn @Paul Harouff
                  last edited by Aug 11, 2022, 2:30 PM

                  @Paul-Harouff said in Notepad++ v8.4.4 - Happy Users' Edition:

                  Sometimes I use Notepad++ to edit long plain text files (not code) and I need a way to mark where the page breaks are. How hard would it be to add the capability to highlight line numbers (e.g., put a dot next to 64, 128, 192, etc.)? Or is there a plugin that already adds this capability?

                  The thread you posted this in is intended to be reserved for critical problems with the titular release, not “general questions” like you asked; please create a new thread and repeat your question there.

                  1 Reply Last reply Reply Quote 1
                  • E
                    Eric Schmenk
                    last edited by Aug 13, 2022, 8:03 PM

                    Greetings.

                    I have stopped working with code years ago, but still use N++ as my normal text editor. I don’t edit text files much, though.

                    A few weeks ago I attempted an auto-update. Afterwards, N++ would immediately crash upon attempting to use it. I finally got around to debugging the issue.

                    Long story short, the crash is triggered by the presence of toolbarIcons.xml in the %appdata%\Notepad++ directory. The date on the file is March 28, 2006. Evidently this file is from a very old version of Notepad++. I can recall some issue with tool bar icons many years ago but don’t remember any details. Anyway, the presence of the file causes all versions of N++ starting with 8.4.2 to crash.

                    I will copy the beginning of the file below. The directory referenced does not exist on my computer.

                    <?xml version="1.0" encoding="Windows-1252" ?>
                    <NotepadPlus>
                        <ToolBarIcons>
                    	    <!-- the value pathPrefix should be the path where you can find all icons -->
                    		<Theme name = "Crystal++" pathPrefix = "D:\Program Files\Accessories\Notepad++\NppCrystalToolbarIcons\Icons\">
                    			<Icon name = "new" id = "0">
                    				<normal>new_normal.ico</normal>
                    				<hover>new_hover.ico</hover>
                    			</Icon>
                    			<Icon name = "open" id = "1">
                    				<normal>fileopen_normal.ico</normal>
                    				<hover>fileopen_hover.ico</hover>
                    			</Icon>
                    
                    R D 2 Replies Last reply Aug 13, 2022, 8:53 PM Reply Quote 1
                    • R
                      rdipardo @Eric Schmenk
                      last edited by rdipardo Aug 13, 2022, 8:55 PM Aug 13, 2022, 8:53 PM

                      @Eric-Schmenk,

                      The directory referenced does not exist

                      Unfortunately N++ doesn’t know any better than to try accessing the non-existent icons. A null pointer dereference would explain the crash.

                      Stale or invalid config files are a pretty consistent source of crashes; some recent examples:

                      • NPP crashes on opening Style Configurator if stylers do not exist
                      • NPP crashes on opening a session file
                      • Application does not start (severe bug)
                      • . . .
                      D 1 Reply Last reply Aug 16, 2022, 7:37 AM Reply Quote -1
                      • D
                        donho @rdipardo
                        last edited by Aug 16, 2022, 7:37 AM

                        @rdipardo said in Notepad++ v8.4.4 - Happy Users' Edition:

                        Stale or invalid config files are a pretty consistent source of crashes; some recent examples:

                        NPP crashes on opening Style Configurator if stylers do not exist
                        NPP crashes on opening a session file
                        Application does not start (severe bug)

                        The 3 above issues are fixed to me. If not, please comment on the issue by providing the instructions for reproduce the bugs.

                        Otherwise, please stop misleading users with your ambiguous comments.

                        1 Reply Last reply Reply Quote 0
                        • D
                          donho @Eric Schmenk
                          last edited by Aug 16, 2022, 7:40 AM

                          @Eric-Schmenk
                          Could you report the issue on https://github.com/notepad-plus-plus/notepad-plus-plus/issues please?

                          1 Reply Last reply Reply Quote 0
                          • J
                            Joel Doyle-Tremblay
                            last edited by Aug 19, 2022, 2:24 PM

                            I have changed some of the settings to make the window cleaner, but since the last update it looks like this:
                            57203cfd-58a8-459b-9149-53823ebdcc1f-image.png

                            Before it was like this:

                            c09c66be-e02e-40f4-a4b9-6240a08ee79c-image.png

                            A 1 Reply Last reply Aug 19, 2022, 2:36 PM Reply Quote 0
                            • A
                              Alan Kilborn @Joel Doyle-Tremblay
                              last edited by Aug 19, 2022, 2:36 PM

                              @Joel-Doyle-Tremblay

                              I’d suppose THIS is your problem.

                              1 Reply Last reply Reply Quote 0
                              • L
                                Lawrence S
                                last edited by Aug 25, 2022, 5:52 PM

                                I have experienced 2 issues after upgrading to v8.4.4:

                                1. Find functionality: The Find dialog doesn’t work as well because now it always searches up or down and cannot search the entire document up/down using the find next button. The workaround is to use the “Find All in Current Document” button.
                                2. This issue seems to be tied to the add-in “3P - Progress Programmers Pal”
                                  Auto-completion text seems to terribly bog down the CPU on my computer, even though it is a relatively powerful computer (Dell for Engineering Design). This only started after upgrading to v8.4.4.

                                I don’t remember the exact version that I was using prior but highly likely to be the last stable version as I update every time the dialog appears.

                                Debug Info:
                                Notepad++ v8.4.4 (64-bit)
                                Build time : Jul 15 2022 - 17:54:42
                                Path : C:\Program Files\Notepad++\notepad++.exe
                                Command Line : “C:\Users\lhs\Downloads_Username.txt”
                                Admin mode : OFF
                                Local Conf mode : OFF
                                Cloud Config : C:\Users\lhs\OneDrive - HydraForce Inc\Documents\Notepad++ customizations
                                OS Name : Windows 10 Pro (64-bit)
                                OS Version : 21H2
                                OS Build : 19044.1889
                                Current ANSI codepage : 1252
                                Plugins :
                                3P (1.8.8)
                                ComparePlugin (2.0.2)
                                Explorer (1.9.5)
                                mimeTools (2.8)
                                NppConverter (4.4)
                                NppExport (0.4)

                                A D 2 Replies Last reply Aug 25, 2022, 6:14 PM Reply Quote 0
                                • A
                                  Alan Kilborn @Lawrence S
                                  last edited by Aug 25, 2022, 6:14 PM

                                  @Lawrence-S said in Notepad++ v8.4.4 - Happy Users' Edition:

                                  Find functionality: The Find dialog doesn’t work as well because now it always searches up or down and cannot search the entire document up/down using the find next button

                                  So I’m trying to decipher what this is saying…with zero success.
                                  Can you elaborate and clarify?
                                  If a specific example with real text helps, by all means present that.

                                  L 1 Reply Last reply Aug 30, 2022, 11:24 PM Reply Quote 0
                                  • D
                                    donho @Lawrence S
                                    last edited by Aug 30, 2022, 7:04 PM

                                    @Lawrence-S said in Notepad++ v8.4.4 - Happy Users' Edition:

                                    Find functionality: The Find dialog doesn’t work as well because now it always searches up or down and cannot search the entire document up/down using the find next button. The workaround is to use the “Find All in Current Document” button.

                                    Make sure you’ve checked Wrap arround:

                                    fdd9965c-0bdb-439b-b93a-ca52fe352713-image.png

                                    L 1 Reply Last reply Aug 30, 2022, 11:22 PM Reply Quote 3
                                    • L
                                      Lawrence S @donho
                                      last edited by Aug 30, 2022, 11:22 PM

                                      @donho Thanks! This actually was this issue. I don’t know how this was changed unless the default changed with an update…

                                      A 1 Reply Last reply Aug 31, 2022, 2:24 PM Reply Quote 0
                                      • L
                                        Lawrence S @Alan Kilborn
                                        last edited by Aug 30, 2022, 11:24 PM

                                        @Alan-Kilborn As for the CPU usage issue, I tested again and am not able to reproduce the issue. If it comes back will try to lock down what is happening better and if necessary repost.
                                        Thanks, Lawrence

                                        1 Reply Last reply Reply Quote 0
                                        • A
                                          Alan Kilborn @Lawrence S
                                          last edited by Aug 31, 2022, 2:24 PM

                                          @Lawrence-S said in Notepad++ v8.4.4 - Happy Users' Edition:

                                          I don’t know how this was changed unless the default changed with an update…

                                          No “default changed with an update”.

                                          I know how it happened: You clicked on Wrap around and it became unticked. Next time, please analyze what you are doing before posting a complaint.

                                          Kudos to donho for figuring out what your complaint actually was (I certainly couldn’t, from your description).

                                          1 Reply Last reply Reply Quote 1
                                          • D donho unpinned this topic on Sep 7, 2022, 3:34 AM
                                          • P PeterJones locked this topic on Jun 29, 2024, 3:31 PM
                                          40 out of 50
                                          • First post
                                            40/50
                                            Last post
                                          The Community of users of the Notepad++ text editor.
                                          Powered by NodeBB | Contributors