Eu testei com sucesso a seguinte solução: defina esta macro AutoHotKey :
SendMode Input ;just to set up preferred method of sending hotkeys
SetTitleMatchMode, RegEx ;from now on, windows titles are matched by regex
#IfWinActive Notepad\+\+ ;(open block) the following hotkeys work only in N++
+^t::Send !f1 ;desired hotkey: Ctrl+Shift+T sends Alt+F, 1
^w::Send ^{F4} ;bonus: Ctrl+W sends Ctrl+F4 (close file convention)
#IfWinActive ;(close #IfWinActive block)
não se esqueça de executar o AutoHotKey como administrador.
Usando o AHK, você pode conseguir muitas coisas úteis no N ++ e em todos os outros aplicativos.