Zufu Liu

Results 628 comments of Zufu Liu

It seems the failure is due to 1 second "Reuse Window Lock Timeout": https://github.com/zufuliu/notepad4/blob/cb275770ca7b85c17911241cd231fbefa7b71619/src/Notepad4.h#L123-L125 Open same file within 1 second will open multiple Notepad4. "Reuse Window Lock Timeout" is removed...

Can be solved with following ways: 1. Change current scheme to Awk before save, `.awk` will be auto appended to file name. 2. Just use "All Files" at end of...

v24.05 is already 1 years old. > My current version doesn't have the ".awk" file type. 1. Schemes -> Syntax Schemes, then select "Awk Script". ![Image](https://github.com/user-attachments/assets/8cced091-aaa2-419b-946b-f53a7408970e) 2. Schemes -> Favorite...

I don't use either of them, can you take a screenshot of their save file dialog?

https://discourse.llvm.org/t/llvm-17-0-0-rc2-tagged/72643/8 cc @zmodem

> I don't think building against the .lib files in that package is likely to work in general. If anyone wants to try to make it work, patches are welcome....

I find following (line 475 to 478) from `clang+llvm-18.1.2-x86_64-pc-windows-msvc\lib\cmake\llvm\LLVMExports.cmake`: ```cmake # Create imported target LLVMDebugInfoPDB add_library(LLVMDebugInfoPDB STATIC IMPORTED) set_target_properties(LLVMDebugInfoPDB PROPERTIES INTERFACE_LINK_LIBRARIES "C:/Program Files (x86)/Microsoft Visual Studio/2019/Professional/DIA SDK/lib/amd64/diaguids.lib;LLVMBinaryFormat;LLVMObject;LLVMSupport;LLVMDebugInfoCodeView;LLVMDebugInfoMSF" ) ```

https://discourse.llvm.org/t/llvm-assumes-specific-visual-studio-installation-after-build/79857/3

`^` and `$` seems is working, what's the test case? ![image](https://github.com/user-attachments/assets/df92a304-600c-4a53-b58c-3ba80f4412e8)

empty matches are skipped: https://github.com/zufuliu/notepad4/blob/10605475bd597620f0d124a747f36702524e03fa/src/Edit.cpp#L5480-L5489 https://github.com/zufuliu/notepad4/blob/10605475bd597620f0d124a747f36702524e03fa/src/Edit.cpp#L5590-L5595