From 4ae2e879e103bb1acc1da9e62d6ae99e9b2c2988 Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Sat, 2 Aug 2014 14:04:03 +0900 Subject: [PATCH] Note on escaping double quotes in inline expression --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9700498..6723350 100644 --- a/README.md +++ b/README.md @@ -151,8 +151,9 @@ and only run when the repository has changed, but you can force it to run unconditionally with the bang-versions of the commands: `PlugInstall!` and `PlugUpdate!`. -Make sure to escape BARs when you write `do` option inline as they are -mistakenly recognized as command separator for Plug command. +Make sure to escape BARs and double-quotes when you write `do` option inline +as they are mistakenly recognized as command separator or the start of the +trailing comment. ```vim Plug 'junegunn/fzf', { 'do': 'yes \| ./install' }