De https://vincent.re/en/open-containing-folder-in-notepad
Pour affecter la commande à un raccourci. Ouvrez %APPDATA%\Notepad++\shortcuts.xml
avec un éditeur. Dans le <Macros>
ajoutez ce qui suit pour Ctrl + Shift + O
<Macro name="Open Containing Folder in Explorer" Ctrl="yes" Alt="no" Shift="yes" Key="79">
<Action type="2" message="0" wParam="41019" lParam="0" sParam="" />
</Macro>
Donc par exemple, mon fichier ressemblera à ceci après
<NotepadPlus>
<InternalCommands />
<Macros>
<Macro …>…</Macro>
<Macro name="Open Containing Folder in Explorer" Ctrl="yes" Alt="no" Shift="yes" Key="79">
<Action type="2" message="0" wParam="41019" lParam="0" sParam="" />
</Macro>
</Macros>
<UserDefinedCommands>
<Command…>…</Command>
</UserDefinedCommands>
<PluginCommands />
<ScintillaKeys />
</NotepadPlus>