summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2014-01-31 15:56:37 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2014-01-31 15:56:37 +0900
commitb2d2be55efaa89b7529ff92d25262b1cb881eb0b (patch)
tree8f98530bc868f5409e8478c728b359dd7c282d62
parent7280e8ebc2a7613730e06eaf632db3294efa4031 (diff)
init_screen must be called within render block0.7.1
-rwxr-xr-xfzf4
-rw-r--r--fzf.gemspec2
2 files changed, 3 insertions, 3 deletions
diff --git a/fzf b/fzf
index 7528aabe..019420b3 100755
--- a/fzf
+++ b/fzf
@@ -7,7 +7,7 @@
# / __/ / /_/ __/
# /_/ /___/_/ Fuzzy finder for your shell
#
-# Version: 0.7.0 (January 30, 2014)
+# Version: 0.7.1 (January 31, 2014)
#
# Author: Junegunn Choi
# URL: https://github.com/junegunn/fzf
@@ -142,7 +142,7 @@ class FZF
def start
$stdout.reopen($stderr)
- init_screen
+ render { init_screen }
start_reader
start_renderer
start_search
diff --git a/fzf.gemspec b/fzf.gemspec
index c3cd8cd0..1d777f0b 100644
--- a/fzf.gemspec
+++ b/fzf.gemspec
@@ -1,7 +1,7 @@
# coding: utf-8
Gem::Specification.new do |spec|
spec.name = 'fzf'
- spec.version = '0.7.0'
+ spec.version = '0.7.1'
spec.authors = ['Junegunn Choi']
spec.email = ['junegunn.c@gmail.com']
spec.description = %q{Fuzzy finder for your shell}