You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Marker is a command palette for the terminal. It lets you bookmark commands (or commands templates) and easily retreive them with the help of a real-time fuzzy matcher.
It's also shipped with many commands common usage(Thanks to tldr).
Features:
A UI selector that lets you easily select the desired command if more than one command is matched.
Fuzzy matching (through commands and their descriptions).
Command template: You can bookmark commands with place-holders and place the cursor at those place-holders using a keyboard shortcut.
Portability across supported shells: you can use bookmarked commands in both Bash and Zshell.
Usage
Ctrl-space: search for commands that match the current written string in the command-line.
Ctrl-k (or marker mark): Bookmark a command.
Ctrl-t: place the cursor at the next placeholder, identified by '{{anything}}'
marker remove: remove a bookmark
You can customize key binding using environment variables, respectively with MARKER_KEY_GET, MARKER_KEY_MARK and MARKER_KEY_NEXT_PLACEHOLDER.