wiki-cli
wiki-cli copied to clipboard
Character "c" terminates process
Typing the character "c" as part of any keyword terminates the process, making it impossible to search for anything containing the letter "c".
I am running Mac OS 11.3.1
it is because of line #11 of /src/components/App/Footer.tsx
if (input === "c") { store.isCleanUpTime = true; process.exit(0);
I've just created a pull request #18 fixing this issue. Now, the escape key is used for exiting the process instead.