summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2016-05-19 01:47:43 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2016-05-19 01:55:54 +0900
commit2f364c62f442af24ed332dc6fe018e676b8dd28c (patch)
tree4babd4a12d645d8c5bb316fc20599c2b19be240b
parent7ed9f8366235a70ce03cf3ab05fcfb6dbcfd9a10 (diff)
0.12.20.12.2
-rw-r--r--CHANGELOG.md14
-rwxr-xr-xinstall4
-rw-r--r--man/man1/fzf.113
-rw-r--r--src/constants.go2
4 files changed, 28 insertions, 5 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index fd0515ac..4047be38 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,20 @@
CHANGELOG
=========
+0.12.2
+------
+
+- 256-color capability detection does not require `256` in `$TERM`
+- Added `print-query` action
+- More named keys for binding; <kbd>F1</kbd> ~ <kbd>F10</kbd>,
+ <kbd>ALT-/</kbd>, <kbd>ALT-space</kbd>, and <kbd>ALT-enter</kbd>
+- Added `jump` and `jump-accept` actions that implement [EasyMotion][em]-like
+ movement
+ ![][jump]
+
+[em]: https://github.com/easymotion/vim-easymotion
+[jump]: https://cloud.githubusercontent.com/assets/700826/15367574/b3999dc4-1d64-11e6-85da-28ceeb1a9bc2.png
+
0.12.1
------
diff --git a/install b/install
index 32cc19d9..76352a30 100755
--- a/install
+++ b/install
@@ -2,8 +2,8 @@
set -u
-[[ "$@" =~ --pre ]] && version=0.12.1 pre=1 ||
- version=0.12.1 pre=0
+[[ "$@" =~ --pre ]] && version=0.12.2 pre=1 ||
+ version=0.12.2 pre=0
auto_completion=
key_bindings=
diff --git a/man/man1/fzf.1 b/man/man1/fzf.1
index 53ac3fe9..970b17e7 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 "Apr 2016" "fzf 0.12.1" "fzf - a command-line fuzzy finder"
+.TH fzf 1 "May 2016" "fzf 0.12.2" "fzf - a command-line fuzzy finder"
.SH NAME
fzf - a command-line fuzzy finder
@@ -183,6 +183,9 @@ on the center of the screen.
.B "--inline-info"
Display finder info inline with the query
.TP
+.BI "--jump-labels=" "CHARS"
+Label characters for \fBjump\fR and \fBjump-accept\fR
+.TP
.BI "--prompt=" "STR"
Input prompt (default: '> ')
.TP
@@ -200,11 +203,14 @@ e.g. \fBfzf --bind=ctrl-j:accept,ctrl-k:kill-line\fR
.B AVAILABLE KEYS: (SYNONYMS)
\fIctrl-[a-z]\fR
\fIalt-[a-z]\fR
- \fIf[1-4]\fR
+ \fIf[1-10]\fR
\fIenter\fR (\fIreturn\fR \fIctrl-m\fR)
\fIspace\fR
\fIbspace\fR (\fIbs\fR)
+ \fIalt-enter\fR
+ \fIalt-space\fR
\fIalt-bspace\fR (\fIalt-bs\fR)
+ \fIalt-/\fR
\fItab\fR
\fIbtab\fR (\fIshift-tab\fR)
\fIesc\fR
@@ -244,12 +250,15 @@ e.g. \fBfzf --bind=ctrl-j:accept,ctrl-k:kill-line\fR
\fBforward-char\fR \fIctrl-f right\fR
\fBforward-word\fR \fIalt-f shift-right\fR
\fBignore\fR
+ \fBjump\fR (EasyMotion-like 2-keystroke movement)
+ \fBjump-accept\fR (jump and accept)
\fBkill-line\fR
\fBkill-word\fR \fIalt-d\fR
\fBnext-history\fR (\fIctrl-n\fR on \fB--history\fR)
\fBpage-down\fR \fIpgdn\fR
\fBpage-up\fR \fIpgup\fR
\fBprevious-history\fR (\fIctrl-p\fR on \fB--history\fR)
+ \fBprint-query\fR (print query and exit)
\fBselect-all\fR
\fBtoggle\fR
\fBtoggle-all\fR
diff --git a/src/constants.go b/src/constants.go
index c60c9582..2848c821 100644
--- a/src/constants.go
+++ b/src/constants.go
@@ -8,7 +8,7 @@ import (
const (
// Current version
- version = "0.12.1"
+ version = "0.12.2"
// Core
coordinatorDelayMax time.Duration = 100 * time.Millisecond