Notepad++ 6.8.8 released
-
Notepad++ 6.8.8 is released.
Please check:
https://notepad-plus-plus.org/news/notepad-6.8.8-released.html -
I dont know whats wrong … im a newbie:
Problem signature:
Problem Event Name: BEX
Application Name: notepad++.exe
Application Version: 6.8.7.0
Application Timestamp: 56578dd9
Fault Module Name: notepad++.exe
Fault Module Version: 6.8.7.0
Fault Module Timestamp: 56578dd9
Exception Offset: 0008d1df
Exception Code: c0000409
Exception Data: 00000000
OS Version: 6.1.7601.2.1.0.768.3
Locale ID: 2057
Additional Information 1: 0618
Additional Information 2: 0618564ded3227edce1764c81438e3e2
Additional Information 3: 6d32
Additional Information 4: 6d32d88ce3ea60b7f2c3ea6c68e711caRead our privacy statement online:
http://go.microsoft.com/fwlink/?linkid=104288&clcid=0x0409If the online privacy statement is not available, please read our privacy statement offline:
C:\Windows\system32\en-US\erofflps.txt -
I did what I usually do - just replaced the NOTEPAD++.EXE file with the new version. It seems to be working well.
David
-
I found 2 bugs.
1 - Replace text works by search up or down from the cursor.
2 - Sometimes in the search results (window) is copied not all text.
Reproduction:
a - Open many files.
b - Find text in multiple files (a sufficient number of rows)
c - In window results choose Select all (context menu)
d - **Copy **(context menu)
e - Insert text in tne new copy
usually it copies the text to the place of pressing the cursor right -
After updating today my Notepad++ now opens every file in JSON syntax? I even disabled JSON (it doesn’t pop up in the language options anymore) but it’s still happening. Even .txt files!
-
Me do not work shortcuts macro.
-
@PhonicStudios This happen when you open what kind of file? Could you provide me more info?
-
Single Quotes and Double Quotes do not auto-complete if preceded by any character. If its the start of the line or a space preceding the quote it does work. They will also auto-complete correctly if I add them to the “Matched Pair” list. This issue also existed in v6.8.6
-
After update 6.8.6 to 6.8.8 style for js files have been lost and looked like txt files. I reinstalled 6.8.6 but didn’t work. Then I uninstall completely and ran a registry cleaner tool then install 6.8.6. Now the style formatting for js files have been restored.
-
Hello Don,
I didn’t understand the point #8 of the change.log file : Improve close button in tab position.
May be, I miss something obvious, but I don’t see any change about the tabs close button ?!
Many thanks, by advance :-)
guy038
-
@Udhaya-Kumar I’m also having this issue. Once I close Notepad++ and re-open it, the JavaScript files are now "Normal Text File"s.
This is an issue for people who work on large Node.JS projects that have 20+ JavaScript files open. I believe this is also happening with ActionScript as well.
-
There was no keyboard shortcut for “Find All in current Document” and, the action Find All in Current Document, when recorded in a macro, doesn’t work at all. This has been a bug for a long time but never been fixed.
-
@donho thank you 4 all version
-
Hello Ye-Miao,
There was no keyboard shortcut for “Find All in current Document” and,
Strg+F and Alt+O
the action Find All in Current Document, when recorded in a macro, doesn’t work at all.
This has been a bug for a long time but never been fixed.Tried it, and worked.
Tested with the shortcuts mentioned above.Cheers
Claudia -
Hello, Ye Miao and Claudia,
No, Claudia, you’re wrong ! The ALT + O shortcut concerns the Find All in All Opened Documents button. But, unfortunately, the Find All in Current Document has NO shorcut, by default :-((
I attempted to improve the default English FIND dialog. So, Ye Miao, and Claudia, just refer to the link below :
And yes, Ye Miao, I agree with you. The Find All in Current Document action is, unfortunately, NOT recordable in a macro :-(( It’s quite a long time bug, that has never been fixed !
Best Regards,
guy038
-
@Ye-Miao sorry for getting confused by find all in current and find all in opened documents.
Cheers
Claudia -
@guy038 said:
I didn’t understand the point #8 of the change.log file : Improve close button in tab position.
the close button’s horizontal position in tab has been adjusted in the middle of tab (height).
-
Thank you Claudia. At least “find all in opened documents” works at the most of the times if I did not open too many log tabs, but I do wish this “find all in current document” bug can be fixed in the coming versions.
-
English is bad,sorry.
How in published comments or Suggestions in the below discussion?
[READ ONLY]中文論壇Or could you tell me which email should I send when I have some Suggestions?
-
Find/Replace is broken when using advanced regular expressions.
For example: Assuming the following text in a documentfunction "xsquare1"(x) result(y) real, intent(in) :: x real :: y t = x*x return end function function "xsquare2"() result(y) real, intent(in) :: x real :: y t = x*x return end function function "xsquare3"() real, intent(in) :: x real :: y t = x*x return end function subroutine "hello1"() print *, "Hello World!" return end subroutine hello subroutine "hello2"(x) print *, "Hello World!" return end subroutine hello
and open the find dialog, press replace tab, choose regular expression and put following in find what
^.*(function|subroutine)\s+\K([\w]+)(?=\()
If you press find, it will find all function/subroutine names. If you press Replace all it will replace all occurancess
but if you want to replace one after the other it won’t replace anything.
Screenshots are here and here.Another issue, which might be related is, that regex engine in function list behaves weird. Do they use the same
regex version/engine? If so, here a screenshots which shows that some functions are not listed whereas
they should. If I add an additional space, either at the end or inbetween the ( ) then they are displayed as
seen here.If the regex engine used by function list code is different to the find/replace dialog may I ask if it is possible
to keep them the same as it would allow to easily test the regular expressions before adding to functionlist.xml?Thank you
Claudia