keep

(★ 630)

A Meta CLI toolkit : Personal shell command keeper and snippets manager

File Explorer

  • .gitignore
  • .pep8speaks.yml
  • LICENSE.md
  • pyproject.toml
  • README.md
  • release.sh
  • tutorial.md

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

autoload

View Details ▼

Mark functions for lazy loading in Zsh.
Functions are not loaded into memory until first called, improving shell startup time.

autoload {{function_name}}

Autoload a function by name:

autoload +X {{function_name}}

Autoload a function and immediately resolve its definition:

autoload -Uz {{function_name}}

Autoload a function using Zsh-style autoloading (recommended):

🔍

edit

View Details ▼

A terminal-based text editor from Microsoft.

edit {{path/to/file}}

Open a file:

tldr run-mailcap

View documentation for the original command:

<Ctrl f>{{pattern}}<Enter>

Search for a pattern:

🔍

pip3

View Details ▼

This command is an alias of `pip`.

tldr pip

View documentation for the original command:

🔍

apt install

View Details ▼

Install packages for Debian-based distributions.

sudo apt install {{package}}

Install a package, or update it to the latest version:

sudo apt install {{[-V|--verbose-versions]}} {{package}}

Display verbose package version information during installation or update:

// repository documentation