Feature Description
The "Quit/Exit" command only be found by "quit" abut would be helpful to be found also exit.
Problem Statement
For a new user (as me) it might seem difficult to close Sol.
After trying exit without any result I tried quit which gave me the "Quit/Exit" command.
Proposed Solution
Looking through the code it seems it could be accomplished by just adding an alias.
@ src/stores/items.tsx:643 @ export function createBaseItems(store: IRootStore) {
id: "quit_sol",
icon: "💀",
name: "Quit/Exit Sol",
alias: "exit",
type: ItemType.CONFIGURATION,
callback: async () => {
solNative.quit();
Unfortunately I cannot get my setup to run to validate the solution, but I'd be more than happen to provide a PR in the hope that it does work like I'd expect it to.
Feature Description
The "Quit/Exit" command only be found by "quit" abut would be helpful to be found also exit.
Problem Statement
For a new user (as me) it might seem difficult to close Sol.
After trying exit without any result I tried quit which gave me the "Quit/Exit" command.
Proposed Solution
Looking through the code it seems it could be accomplished by just adding an alias.
Unfortunately I cannot get my setup to run to validate the solution, but I'd be more than happen to provide a PR in the hope that it does work like I'd expect it to.