From b720af8a06576771feee156c51883a6905ee9769 Mon Sep 17 00:00:00 2001 From: John Higgins Date: Wed, 2 Aug 2023 00:28:26 -0700 Subject: [PATCH] fix for issue #2095 --- CHANGELOG.md | 1 + README.md | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 375935c9..7b0309a3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,7 @@ - Associate `os-release` with `bash` syntax, see #2587 (@cyqsimon) - Associate `Containerfile` with `Dockerfile` syntax, see #2606 (@einfachIrgendwer0815) +- Replaced quotes with double quotes so fzf integration example script works on windows and linux. see #2095 (@johnmatthiggins) ## Themes diff --git a/README.md b/README.md index be86c4a2..7ec80627 100644 --- a/README.md +++ b/README.md @@ -118,7 +118,7 @@ use `bat`s `--color=always` option to force colorized output. You can also use ` option to restrict the load times for long files: ```bash -fzf --preview 'bat --color=always --style=numbers --line-range=:500 {}' +fzf --preview "bat --color=always --style=numbers --line-range=:500 {}" ``` For more information, see [`fzf`'s `README`](https://github.com/junegunn/fzf#preview-window).