From 1169cc86538e6a7659b64ac5a52c1fb7d37b759d Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Sat, 18 Apr 2015 10:38:12 +0900 Subject: 0.9.10 --- install | 2 +- man/man1/fzf.1 | 8 ++++---- src/constants.go | 2 +- src/options.go | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/install b/install index 038e1f3e..2b32cbf2 100755 --- a/install +++ b/install @@ -1,6 +1,6 @@ #!/usr/bin/env bash -version=0.9.9 +version=0.9.10 cd $(dirname $BASH_SOURCE) fzf_base=$(pwd) diff --git a/man/man1/fzf.1 b/man/man1/fzf.1 index 4626ebaa..ec0def75 100644 --- a/man/man1/fzf.1 +++ b/man/man1/fzf.1 @@ -21,7 +21,7 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. .. -.TH fzf 1 "April 2015" "fzf 0.9.9" "fzf - a command-line fuzzy finder" +.TH fzf 1 "April 2015" "fzf 0.9.10" "fzf - a command-line fuzzy finder" .SH NAME fzf - a command-line fuzzy finder @@ -98,11 +98,11 @@ Color scheme: [dark|light|16|bw] .br .R "" .br -.BR dark " Dark color scheme for 256-color terminal" +.BR dark " Color scheme for dark 256-color terminal" .br -.BR light " Light color scheme for 256-color terminal" +.BR light " Color scheme for light 256-color terminal" .br -.BR 16 " Default color scheme for 16-color terminal" +.BR 16 " Color scheme for 16-color terminal" .br .BR bw " No colors" .br diff --git a/src/constants.go b/src/constants.go index 07ac7526..b204cf96 100644 --- a/src/constants.go +++ b/src/constants.go @@ -8,7 +8,7 @@ import ( const ( // Current version - Version = "0.9.9" + Version = "0.9.10" // Core coordinatorDelayMax time.Duration = 100 * time.Millisecond diff --git a/src/options.go b/src/options.go index 173dee91..25dcfb3e 100644 --- a/src/options.go +++ b/src/options.go @@ -35,7 +35,7 @@ const usage = `usage: fzf [options] -m, --multi Enable multi-select with tab/shift-tab --ansi Enable processing of ANSI color codes --no-mouse Disable mouse - --color=COL Color scheme [dark|light|16|bw] + --color=COL Color scheme; [dark|light|16|bw] (default: dark on 256-color terminal, otherwise 16) --black Use black background --reverse Reverse orientation @@ -279,7 +279,7 @@ func parseTheme(str string) *curses.ColorTheme { return curses.Light256 case "16": return curses.Default16 - case "bw", "off", "no", "none": + case "bw", "no": return nil default: errorExit("invalid color scheme: " + str) -- cgit v1.2.3