summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2022-07-21 22:16:19 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2022-07-21 22:21:11 +0900
commit52594355bfa63ce7d579c7961f4f2fb30b486101 (patch)
tree7656923b18f295f7ab30e5fcb06f0c944aff68ce /README.md
parent0d06c28b1943e820440cff9182a0ae3bdd5e3c59 (diff)
[shell] 'kill' completion will now require trigger sequence (**)
'kill **<tab>' instead of 'kill <tab>' just like any other completions. Close #2716 Close #385
Diffstat (limited to 'README.md')
-rw-r--r--README.md5
1 files changed, 2 insertions, 3 deletions
diff --git a/README.md b/README.md
index 92eab8b7..d8e11afc 100644
--- a/README.md
+++ b/README.md
@@ -382,12 +382,11 @@ cd ~/github/fzf**<TAB>
#### Process IDs
-Fuzzy completion for PIDs is provided for kill command. In this case,
-there is no trigger sequence; just press the tab key after the kill command.
+Fuzzy completion for PIDs is provided for kill command.
```sh
# Can select multiple processes with <TAB> or <Shift-TAB> keys
-kill -9 <TAB>
+kill -9 **<TAB>
```
#### Host names