Notepad Plus Plus
Notepad++ Tips and Tricks
Notepad++ Tips and Tricks
Run Menu Tricks
Run Menu Tricks
Notepad++ shortcuts file location
Notepad++ shortcuts file location
C:\Users\<username>\AppData\Roaming\Notepad++\shortcuts.xml
Run Verbose with NoExit
Run Verbose with NoExit
%SystemRoot%\sysnative\WindowsPowerShell\v1.0\powershell.exe -noexit '$(FULL_CURRENT_PATH)' -verbose
Note that the single-quotes help when there are spaces in the file path.
Use PowerShell to run python from inside Notepad++
Use PowerShell to run python from inside Notepad++
%SystemRoot%\sysnative\WindowsPowerShell\v1.0\powershell.exe -noexit ; python $(FULL_CURRENT_PATH)
Use PowerShell to run a Robot Framework test from inside Notepad++
Use PowerShell to run a Robot Framework test from inside Notepad++
%SystemRoot%\sysnative\WindowsPowerShell\v1.0\powershell.exe -noexit ; cd '$(CURRENT_DIRECTORY)' ; robot.bat $(FULL_CURRENT_PATH)