A simple terminal-based key sequence launcher inspired by "whichkey" plugins found in text editors like Emacs and Neovim. wkd
allows you to define and execute various actions through memorable key sequences.
Built with TypeScript and Deno.
wkd
provides a framework for creating your own keyboard shortcuts to perform common actions, such as:
- Opening URLs in various browsers
- Opening files or folders in different applications
- Executing shell commands
- More actions to come!
This project draws inspiration from "whichkey" plugins in text editors like Emacs and Neovim. While those plugins help users remember and execute keybindings within the editor, wkd
brings similar functionality to the terminal as a standalone application.
- Tree-like navigation for key sequences
- Support for different action types:
- Web actions (opening URLs)
- Filesystem actions (opening files/folders)
- Shell actions (executing commands)
- Visual key sequence hints with colored output
- Customizable key bindings and actions
- Make sure you have Deno installed
- Clone this repository
- Run the application:
deno task start
For development with file watching:
deno task dev
- Start the application
- Type key sequences to navigate through the menu
- When you reach a defined action, it will be executed
- Press ESC or 'q' to exit
If you've defined a key sequence "gh" to open GitHub, typing "g" followed by "h" will open GitHub in your browser.
The application comes with no predefined shortcuts. You'll need to define your own in nodes.ts
and config.ts
files:
-
Copy the example files to create your own configuration:
cp example.nodes.ts nodes.ts cp example.config.ts config.ts
-
Edit these files according to your needs.
See the Configuration Guide for detailed instructions and examples.
{
type: 'web',
url: 'https://example.com',
newWindow: true, // optional, default is true
browser: 'chrome', // optional, default is 'chrome'
profile: 'profile-name' // optional, for Chrome only
}
{
type: 'filesystem',
subType: 'Open in File Explorer' // or other supported options
}
{
type: 'shell',
shell: 'bash', // optional, depends on your OS
command: 'echo "Hello, World!"'
}
- Implementation of action execution
- Add a task for sorting nodes by keys
- Better handling of browser profiles
- Configuration via external file