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} } ```