m/fzf
1
0
mirror of https://github.com/junegunn/fzf.git synced 2025-11-19 17:13:42 -05:00

Updated Examples (markdown)

Truls
2017-12-16 23:42:43 +01:00
parent e7d7f07f7d
commit 4a38e3d86c

@@ -663,11 +663,10 @@ bcp() {
### Homebrew Cask ### Homebrew Cask
```sh
# Install ore open webpage for selected application # Install ore open webpage for selected application
# using brew cask search as input source # using brew cask search as input source
# and display a info quickview window for the currently marked application # and display a info quickview window for the currently marked application
```sh
install() { install() {
local token local token
token=$(brew cask search | fzf-tmux --query="$1" +m --preview 'brew cask info {}') token=$(brew cask search | fzf-tmux --query="$1" +m --preview 'brew cask info {}')
@@ -687,10 +686,10 @@ install() {
``` ```
```sh
# Uninstall ore open webpage for selected application # Uninstall ore open webpage for selected application
# using brew list search as input source (all brew cask installed applications) # using brew list search as input source (all brew cask installed applications)
# and display a info quickview window for the currently marked application # and display a info quickview window for the currently marked application
```sh
uninstall() { uninstall() {
local token local token
token=$(brew cask list | fzf-tmux --query="$1" +m --preview 'brew cask info {}') token=$(brew cask list | fzf-tmux --query="$1" +m --preview 'brew cask info {}')