Zufu Liu

Results 628 comments of Zufu Liu

save the following as .reg file (change pathe for Notepad2-mod.exe in last), double click it. Windows Registry Editor Version 5.00 [HKEY_CLASSES_ROOT\*\shell\Notepad2-mod] @="Notepad2-mod" [HKEY_CLASSES_ROOT\*\shell\Notepad2-mod\command] @="D:\\Tools\\Notepad2-mod\\Notepad2-mod.exe %1"

How about remove above property? `LLVMInstallDir` is detected from registry (which is set official installer from https://github.com/llvm/llvm-project/releases), see https://github.com/zufuliu/llvm-utils/blob/main/VS2017/LLVM/LLVM.Common.props#L3 ```xml $(Registry:HKEY_LOCAL_MACHINE\SOFTWARE\LLVM\LLVM) $(Registry:HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\LLVM\LLVM) ``` for your self built llvm, two workarounds:...

Hi @11philip22, can you test latest code, check whether it works now? In 319852e44ab5a6bf03873e565bff54444984f1a8, I changed `LLVMInstallDir` to only use official installation folder when `bin\clang-cl.exe` exists (in your case, since...

for VS 2010 to 2015 https://github.com/zufuliu/llvm-utils/blob/master/VS2015/install.bat for VS 2017 and 2019. https://github.com/zufuliu/llvm-utils/blob/master/VS2017/install.bat

Example for using on AppVeyor https://github.com/zufuliu/notepad2/blob/master/build/install_llvm.bat

Sorry, but what's "multi-tag function"? can you give examples or links?

That's multi-tab, unfortunately it's not on recent TODOs. Quoted text from originally Notepad2's FAQ at http://www.flos-freeware.ch/doc/notepad2-FAQs.html#q1 > ## Will Notepad2 ever have a tabbed multiple document interface? > > Personally,...

The article https://www.codeproject.com/articles/605134/tabbed-multi-process-application might be useful.

Which scheme do you use? either menu should be enabled except for Text File, 2nd Text File and ANSI Art schemes regardless of the keyboard layout. Custom key combination for...

The menus are disabled with following code (in `void MsgInitMenu(HWND hwnd, WPARAM wParam, LPARAM lParam)`): https://github.com/zufuliu/notepad2/blob/d33aa902d7597248d9dc89d25a73a932d766dce7/src/Notepad2.c#L2596-L2599 (with custom built Notepad2) you can enable console log, and print `pLexCurrent->lexerAttr`. https://github.com/zufuliu/notepad2/blob/d33aa902d7597248d9dc89d25a73a932d766dce7/src/Notepad2.c#L526-L536