From 995e2bd9829651234ac6f701b18a7ee796d402b7 Mon Sep 17 00:00:00 2001 From: Randall Winkhart Date: Sat, 6 Jul 2024 00:18:32 -0400 Subject: [PATCH] [wiki/MUTN] Add list of Windows quirks --- wiki/MUTN/completions.md | 4 +++- wiki/MUTN/quirks.md | 7 +++++++ 2 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 wiki/MUTN/quirks.md diff --git a/wiki/MUTN/completions.md b/wiki/MUTN/completions.md index 332d43d..8ecb041 100644 --- a/wiki/MUTN/completions.md +++ b/wiki/MUTN/completions.md @@ -1,3 +1,4 @@ +## Shell Completions Troubleshooting ### ZSH completions not working? Make sure your ~/.zshrc contains the following: ```shell @@ -29,4 +30,5 @@ Currently, completions must be manually installed and sourced in your PowerShell ```shell Set-PSReadlineKeyHandler -Key Tab -Function Complete # this line is optional; it makes tab completion function more similarly to Bash/ZSH . :\path\to\mutn.ps1 -``` \ No newline at end of file +``` +...and then restart your shell. \ No newline at end of file diff --git a/wiki/MUTN/quirks.md b/wiki/MUTN/quirks.md new file mode 100644 index 0000000..fd068b9 --- /dev/null +++ b/wiki/MUTN/quirks.md @@ -0,0 +1,7 @@ +## Windows Quirks +MUTN for Windows is fully functional, though it does exhibit a few quirks/bugs not found on other platforms. Watch out for these, and if you have the know-how, pull requests addressing them are welcomed! + +- Reading entries (especially those containing Markdown notes) often results in failure to interpret ANSI escape codes, leading to the raw escape codes being dumped to stdout. This happens seemingly randomly and re-running the exact same command ALWAYS yields the correct output. It's like the terminal has to "warm up" to ASNI escape codes or something. **Help wanted**. +- GPG is sometimes (seems unpredictable) incredibly slow to start on Windows (often after a reboot), leading to many operations seemingly hanging + - **This will be addressed** in the migration off of GPG that will take place before v1.0.0 +- PowerShell tab completions will not complete after a directory name if the directory contains a space \ No newline at end of file