@Kevin-McKee
if it is a general question, then the answer is every recent version.
If you have a particular issue then name it and we can see if there is a solution to it.
Cheers
Claudia
@D-L
in the meantime, instead of using the menu funtion to sava as copy,
you could use a scripting language like lua script or python script to do it.
Possible way to go?
Cheers
Claudia
@Maison-da-Silva
understood, thx.
Windows 10 has changed something.
Most likely, haven’t much time to test win10 as I was already migrating to Linux.
Cheers
Claudia
I have the exact same issue on Windows 10x64. I opened an issue in the bug tracker. See:
https://github.com/notepad-plus-plus/notepad-plus-plus/issues/2700
Michael Milette
Hello, Антон Карманов,
Not totally sure that is the definitive solution, but try to uncheck the Autodetect character encoding option, in Preferences > MISC.
Best Regards,
guy038
Hello Barney,
AFAIK the Customize Toolbar plugin has not been discontinued.
I use v4.1 and it works perfectly well.
The code is not open-source.
Best regards.
I have discovered what I think is an answer to my own request.
View | Move/Clone Current Document | Move to Other View.
Sorry to bother you all. I am still on the front end of the learning curve.
I fixed this problem by changing the following code in NppExport that I found here https://github.com/chcg/NPP_ExportPlugin.
TXTExporter::exportData()
Before:
int totalBytesNeeded = ed->csd->nrChars;
After:
int totalBytesNeeded = ed->csd->nrChars + 1;
RTFExporter::exportData()
Before:
int totalBytesNeeded = 1; //zero terminator
After:
int totalBytesNeeded = 2; //zero terminator
HTMLExporter exportData()
Before:
int totalBytesNeeded = 1; //zero terminator
After:
int totalBytesNeeded = 2; //zero terminator
I hope this helps someone.
Thanks,
Darren
Project Centennial is the codename for a bridge Microsoft have developed so developers can repackage their exe, msi and other desktop apps as “appx” packages similar to Windows 10 store apps. The binary installer file gets converted and it will be possible to distribute it in the Windows Store. It can still be available out of the store too as both appx and exe installers.
I do not know about the terms and license agreement really but I guess it is possible to put the app there without restrictions. Just Microsoft checks the app to approve it is malware free and usable .