Notepad Plus Plus

Notepad++ Tips and Tricks

Run Menu Tricks

Notepad++ shortcuts file location

C:\Users\<username>\AppData\Roaming\Notepad++\shortcuts.xml

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++

%SystemRoot%\sysnative\WindowsPowerShell\v1.0\powershell.exe -noexit ; python $(FULL_CURRENT_PATH)

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)

[Edit]