summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2014-04-25 19:16:33 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2014-04-25 19:16:33 +0900
commit0528435386e51b4f8956f055af64fa0e4f47d89d (patch)
tree094db4c6805f9a27db2a3a3272103d6af7e2d946 /README.md
parentfe22213b510dad8b23b91f886e8f785dea5598b9 (diff)
Update README
Diffstat (limited to 'README.md')
-rw-r--r--README.md16
1 files changed, 15 insertions, 1 deletions
diff --git a/README.md b/README.md
index 11e260e0..3cb83b0c 100644
--- a/README.md
+++ b/README.md
@@ -24,6 +24,15 @@ git clone https://github.com/junegunn/fzf.git ~/.fzf
~/.fzf/install
```
+In case you don't have git installed:
+
+```sh
+mkdir -p ~/.fzf
+curl -L https://github.com/junegunn/fzf/archive/HEAD.tar.gz |
+ tar xz --strip-components 1 -C ~/.fzf
+~/.fzf/install
+```
+
The script will setup:
- `fzf` executable
@@ -31,7 +40,8 @@ The script will setup:
- Fuzzy auto-completion for bash
If you don't use bash or zsh, you have to manually place fzf executable in a
-directory included in `$PATH`. Key bindings are not yet supported.
+directory included in `$PATH`. Key bindings and auto-completion will not be
+available in that case.
### Install as Vim plugin
@@ -395,6 +405,10 @@ nnoremap <silent> <Leader><Enter> :call fzf#run({
\ })<CR>
```
+### Articles
+
+- [fzf+vim+tmux](http://junegunn.kr/2014/04/fzf+vim+tmux)
+
Tips
----