Zufu Liu
Zufu Liu
> JS backtick-type strings that quote linefeeds literally should normally have their linefeeds converted to \n (the linefeed removed UglifyJS (https://www.npmjs.com/package/uglify-js) does this. I'm not going to implement it as...
Not at the moment, but INI files can be redirected. https://github.com/zufuliu/notepad4/blob/7f490255a3a19b46a345285e0be8878d48bb642c/doc/Notepad4.ini#L1-L4
Looks it's an invisible character. https://www.unicode.org/L2/L2002/02279-muller.htm > SHY is rendered invisibly and has no width, except at a line break. The rendering of the soft hyphen depends on the script....
> NP++ also renders it just as winmerge does. Change rendering technology to legacy GDI will render it as hyphen. Windows 11 Notepad, Edge, Chrome, etc. render it as invisible.
> the clipboard a list of the characters and their hex/decimal values of the selection in some fashion You can use menu "Edit -> Special -> Char to Hex" to...
Another option is using drop-down button, it's much simpler than using tab control. https://learn.microsoft.com/en-us/windows/win32/controls/handle-drop-down-buttons
> and make three regex checkbox together. Another way to achieve this is simply swap "Bookmark matched line" and "Use Boost Regex".
> Another option is using drop-down button, it's much simpler than using tab control. Windows 11's Notepad does this. > and gray out Transform backslashes. Disable other checkboxes (using [`EnableWindow`](https://learn.microsoft.com/en-us/windows/win32/api/winuser/nf-winuser-enablewindow)...
> 1.冗余备份功能,保存更新原文件后,将之前的版本冗余保存到指定目录 Settings -> AutoSave Settings ...   > 2.自动转UTF-8功能,打开文件后,自动编码转为UTF8 no Bom格式,保存生效 或 自动保存 Use File -> Encoding -> UTF-8 to remove BOM. 
https://github.com/zufuliu/notepad4/blob/e1e7fb9529c08ea35f2d04b0ffd1bba980b76720/scintilla/lexers/LexAsm.cxx#L258-L286