Skip to content

Instantly share code, notes, and snippets.

@BtbN
Created August 31, 2025 14:27
Show Gist options
  • Save BtbN/6b6f624f41383714863e1ee9368c58c4 to your computer and use it in GitHub Desktop.
Save BtbN/6b6f624f41383714863e1ee9368c58c4 to your computer and use it in GitHub Desktop.
Notepad++ WSL shell function
function npp() {
local args=()
for v in "$@"; do
local arg="$(wslpath -a -m "$v")"
args+=( "'\"${arg//\'/''}\"'" )
done
[[ ${#args[@]} -gt 0 ]] || return
powershell.exe -Command "& {Start-Process -FilePath 'C:/Program Files/Notepad++/notepad++.exe' -ArgumentList @($(IFS=, ; printf "%s" "${args[*]}"))}"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment