Community
    • Login

    Notepad++ 6.8.4 released

    Scheduled Pinned Locked Moved Announcements
    18 Posts 8 Posters 47.7k 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.
    • donhoD
      donho
      last edited by donho

      This version contains a lot of bug-fixes and some enhancements:
      https://notepad-plus-plus.org/news/notepad-6.8.4-released.html

      Edit: For the previous versions only one js lexer was used for both for embedded (in html) and “stand alone” javascript. From this version a new Javascript lexer has been added for “stand alone” javascript. The old js lexer is only for embedded javascript syntax highlighting.
      If you got syntax highlighting problems (for 6.8.4 or upper versions) for javascript, please exit your Notepad++, remove %appdata%\Notepad++\stylers.xml and relauch Notepad++. It should solve your problem.

      1 Reply Last reply Reply Quote 0
      • User SoftU
        User Soft
        last edited by

        Not work hide in Tray :(
        Fix please.

        1 Reply Last reply Reply Quote 0
        • Jeff PageJ
          Jeff Page
          last edited by

          The function list is not working in JavaScript files anymore. I installed 6.8.3 again and it works fine there on the same files. I was checking the config files to see if there was a problem there but I could not figure it out.

          1 Reply Last reply Reply Quote 1
          • MATEUSZ BRAKM
            MATEUSZ BRAK
            last edited by

            Same problem

            1 Reply Last reply Reply Quote 0
            • donhoD
              donho
              last edited by donho

              @User-Soft Tested in v6.8.4 under Windows 10 32bits, “hide in try” works for me.
              Could you provide more info (your config, instructions to reproduce it, the screenshot…)?

              Note that “hide in try” feature is disabled in Administrator mode due to the restriction in such mode.

              User SoftU 1 Reply Last reply Reply Quote 0
              • MATEUSZ BRAKM
                MATEUSZ BRAK
                last edited by

                What about the AutoComplete?

                1 Reply Last reply Reply Quote 0
                • Shakespeare WillianS
                  Shakespeare Willian
                  last edited by

                  The shortcuts of “Ctrl + Shift + Up” and “Ctrl + Shift + down” don’t work in macro mode, is it a feature?

                  guy038G 1 Reply Last reply Reply Quote 0
                  • Pete WestgP
                    Pete Westg
                    last edited by

                    It seems that Source Switch plugin doesn’t feel good with new version. Npp crushes on exit
                    with the following error


                    Problem signature:
                    Problem Event Name: BEX
                    Application Name: notepad++.exe
                    Application Version: 6.8.4.0
                    Application Timestamp: 56214ef7
                    Fault Module Name: SourceSwitch.dll
                    Fault Module Version: 0.7.0.0
                    Fault Module Timestamp: 509f9074
                    Exception Offset: 00009ccc
                    Exception Code: c0000417
                    Exception Data: 00000000
                    OS Version: 6.1.7601.2.1.0.256.48
                    Locale ID: 1032
                    Additional Information 1: f83b
                    Additional Information 2: f83bb23050c85ee480c0dc26614c230f
                    Additional Information 3: d545
                    Additional Information 4: d5452692e28b740a239c7d62275ee41f

                    Please note that it works ok with 6.8.3

                    1 Reply Last reply Reply Quote 0
                    • guy038G
                      guy038 @Shakespeare Willian
                      last edited by guy038

                      @Shakespeare-Willian

                      Hello William,

                      Yes, you’re right. the Move Up Current Line and Move Down Current Line actions are wrongly recorded in a macro. Luckily, there’s an easy work-around :-)

                      Let’s suppose, that you simply recorded the Edit - Line Operations - Move Down Current Line action OR you hit the CTRL + SHIFT + Down shortcut, in a macro, with name Test.

                      Then, if you close Notepad++ and open the shortcuts.xml configuration file, with an OTHER editor ( Windows Notepad, Wordpad, or else… ), you’ll easily notice that, in the macro node, this new macro, named Test, is stored as below :

                      <Macro name="Test" Ctrl="no" Alt="no" Shift="no" Key="0">
                          <Action type="0" message="2024" wParam="2" lParam="0" sParam="" />
                          <Action type="0" message="2339" wParam="0" lParam="0" sParam="" />
                          <Action type="0" message="2024" wParam="1" lParam="0" sParam="" />
                          <Action type="2" message="0" wParam="42015" lParam="0" sParam="" />
                      </Macro>
                      

                      It look like that some extra actions are performed, without any purpose ! So, just delete the first three lines <Action ....>. Therefore, the macro description is, now, changed into :

                      <Macro name="Test" Ctrl="no" Alt="no" Shift="no" Key="0">
                          <Action type="2" message="0" wParam="42015" lParam="0" sParam="" />
                      </Macro>
                      

                      Finally, save the modifications of the shortcuts.xml file and re-open Notepad++. This time, your Test macro should work nice !

                      Note : For the Move Up Current Line action, just change the value of wParam, from 42015 to 42014 !

                      Et voilà !

                      Best Regards

                      guy038

                      1 Reply Last reply Reply Quote 0
                      • donhoD
                        donho
                        last edited by

                        @Jeff-Page @MATEUSZ-BRAK The function list for javascript regression will be fixed in the next release.

                        Jeff PageJ 1 Reply Last reply Reply Quote 0
                        • donhoD
                          donho
                          last edited by

                          @Shakespeare-Willian The shortcuts of “Ctrl + Shift + Up” and “Ctrl + Shift + down” not working in macro mode is not a feature.
                          Making you ask “is it a feature” is a feature.

                          1 Reply Last reply Reply Quote 0
                          • MATEUSZ BRAKM
                            MATEUSZ BRAK
                            last edited by

                            for when the planned new version?

                            1 Reply Last reply Reply Quote 0
                            • donhoD
                              donho
                              last edited by

                              @MATEUSZ-BRAK Now.

                              1 Reply Last reply Reply Quote 0
                              • User SoftU
                                User Soft @donho
                                last edited by

                                @donho said:

                                @User-Soft Tested in v6.8.4 under Windows 10 32bits, “hide in try” works for me.

                                Windows 7 64bits - not work.
                                6.8.1 - work hide in tray, 6.8.4 - not work.

                                Please check again Windows 7 64bits

                                Goku ZeusG 1 Reply Last reply Reply Quote 0
                                • donhoD
                                  donho
                                  last edited by

                                  @User-Soft said:

                                  Windows 7 64bits - not work.

                                  I just tested under Windows 7 64bits - works perfect to me.
                                  Are you sure that you are not running Notepad++ in Administrator mode?

                                  User SoftU 1 Reply Last reply Reply Quote 0
                                  • User SoftU
                                    User Soft @donho
                                    last edited by

                                    @donho said:

                                    @User-Soft said:

                                    Windows 7 64bits - not work.

                                    I just tested under Windows 7 64bits - works perfect to me.
                                    Are you sure that you are not running Notepad++ in Administrator mode?

                                    I think that, yes, the program is run as an administrator. This is my priority. All my programs run automatically from the administrator. I turned off UAC.
                                    Why did you remove the function minimization to tray in the new versions? Can return? It is necessary to minimize.

                                    1 Reply Last reply Reply Quote 0
                                    • Jeff PageJ
                                      Jeff Page @donho
                                      last edited by

                                      @donho said:

                                      @Jeff-Page @MATEUSZ-BRAK The function list for javascript regression will be fixed in the next release.

                                      I upgrade to 6.8.5 and the function list is still blank for JavaScript files.
                                      I will report it on the 6.8.5 thread also.
                                      Going back to 6.8.3 again.

                                      1 Reply Last reply Reply Quote 0
                                      • Goku ZeusG
                                        Goku Zeus @User Soft
                                        last edited by

                                        @User-Soft said in Notepad++ 6.8.4 released:

                                        @donho said:

                                        @User-Soft Tested in v6.8.4 under Windows 10 32bits, “hide in try” works for me.

                                        Windows 7 64bits - not work.
                                        6.8.1 - work hide in tray, 6.8.4 - not work.

                                        Please check again Windows 7 64bits

                                        Yes, it worked.

                                        1 Reply Last reply Reply Quote 0
                                        • PeterJonesP PeterJones locked this topic on
                                        • First post
                                          Last post
                                        The Community of users of the Notepad++ text editor.
                                        Powered by NodeBB | Contributors