Notepad++ Tips
Notepad++ will be open whenever double-click a text file, and whenever notepad.exe is executed.
Run cmd/powershell as as administrator:
> reg add "HKLM\Software\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\notepad.exe" /v "Debugger" /t REG_SZ /d "\"%ProgramFiles(x86)%\Notepad++\notepad++.exe\" -notepadStyleCmdline -z" /f
To undo (reverse) the replacement, use the following command:
> reg delete "HKLM\Software\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\notepad.exe" /v "Debugger" /f
More at!
- Install LuaScript via the Plugin Manager.
- Edit the LuaScript startup file in Plugins > LuaScript > Edit Startup Script
- Add the following code:
editor1.Technology = SC_TECHNOLOGY_DIRECTWRITE
editor2.Technology = SC_TECHNOLOGY_DIRECTWRITE
Detail at!