mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-11 00:10:08 +00:00
feat(tldr): add tldr plugin (#12429)
This commit is contained in:
parent
f6b3fc84d1
commit
dfb436b54a
2 changed files with 34 additions and 0 deletions
15
plugins/tldr/README.md
Normal file
15
plugins/tldr/README.md
Normal file
|
@ -0,0 +1,15 @@
|
|||
# tldr plugin
|
||||
|
||||
This plugin adds a shortcut to insert tldr before the previous command.
|
||||
Heavily inspired from [Man plugin](https://github.com/ohmyzsh/ohmyzsh/tree/master/plugins/man).
|
||||
|
||||
To use it, add `tldr` to the plugins array in your zshrc file:
|
||||
|
||||
```zsh
|
||||
plugins=(... tldr)
|
||||
```
|
||||
|
||||
# Keyboard Shortcuts
|
||||
| Shortcut | Description |
|
||||
|------------------------------------|----------------------------------------------------------------------------|
|
||||
| <kbd>Esc</kbd> + tldr | add tldr before the previous command to see the tldr page for this command |
|
19
plugins/tldr/tldr.plugin.zsh
Normal file
19
plugins/tldr/tldr.plugin.zsh
Normal file
|
@ -0,0 +1,19 @@
|
|||
tldr-command-line() {
|
||||
# if there is no command typed, use the last command
|
||||
[[ -z "$BUFFER" ]] && zle up-history
|
||||
|
||||
# if typed command begins with tldr, do nothing
|
||||
[[ "$BUFFER" = tldr\ * ]] && return
|
||||
|
||||
# get command and possible subcommand
|
||||
# http://zsh.sourceforge.net/Doc/Release/Expansion.html#Parameter-Expansion-Flags
|
||||
local -a args
|
||||
args=(${${(Az)BUFFER}[1]} ${${(Az)BUFFER}[2]})
|
||||
|
||||
BUFFER="tldr ${args[1]}"
|
||||
}
|
||||
|
||||
zle -N tldr-command-line
|
||||
# Defined shortcut keys: [Esc]tldr
|
||||
bindkey "\e"tldr tldr-command-line
|
||||
|
Loading…
Reference in a new issue