From 9214986dcc99f25e7e8ab4cbce3d85085a1fd961 Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Fri, 3 Apr 2015 14:48:09 +0900 Subject: [PATCH] Updated Examples (markdown) --- Examples.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Examples.md b/Examples.md index 58b82b2..439c747 100644 --- a/Examples.md +++ b/Examples.md @@ -215,7 +215,7 @@ v() { local files files=$(grep '^>' ~/.viminfo | cut -c3- | while read line; do - [ -f "${line/\~/$HOME}" ] && echo $line + [ -f "${line/\~/$HOME}" ] && echo "$line" done | fzf-tmux -d -m -q "$*" -1) && vim ${files//\~/$HOME} } ```