From 7e33622f63ffd0d3a1e3906f27e2a838034b70c7 Mon Sep 17 00:00:00 2001 From: whoami Date: Thu, 20 Mar 2025 20:16:18 +0000 Subject: [PATCH] Add wsl windows interop for fish --- tools/fish/conf.d/winterop.fish | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 tools/fish/conf.d/winterop.fish diff --git a/tools/fish/conf.d/winterop.fish b/tools/fish/conf.d/winterop.fish new file mode 100644 index 0000000..52750e6 --- /dev/null +++ b/tools/fish/conf.d/winterop.fish @@ -0,0 +1,11 @@ +if command -v wslpath > /dev/null + function cdw + cd (wslpath -u $argv) + end + function zw + z (wslpath -u $argv) + end + alias psw="tasklist.exe" + alias killw="taskkill.exe" + alias winget="winget.exe" +end