pull/165/merge 0.9.10
Junegunn Choi 9 years ago
parent f66d94c6b0
commit 1169cc8653

@ -1,6 +1,6 @@
#!/usr/bin/env bash
version=0.9.9
version=0.9.10
cd $(dirname $BASH_SOURCE)
fzf_base=$(pwd)

@ -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

@ -8,7 +8,7 @@ import (
const (
// Current version
Version = "0.9.9"
Version = "0.9.10"
// Core
coordinatorDelayMax time.Duration = 100 * time.Millisecond

@ -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)

Loading…
Cancel
Save