All Versions
30
Latest Version
Avg Release Cycle
66 days
Latest Release
32 days ago
Changelog History
Page 3
Changelog History
Page 3
-
v0.5.5 Changes
February 23, 2019๐ Bug fixes:
- ๐ fix: regression on
--with-nth
feature - ๐ fix: 100% CPU on not enough printing area
- ๐ fix: regression on
-
v0.5.4 Changes
February 20, 2019 -
v0.5.3 Changes
February 20, 2019๐ Features:
--header
for adding header line--inline-info
for displaying info besides query- โ run preview commands asynchronizely
- implement action
delete-charEOF
- ๐ support key:
ctrl+space
๐ More bug fixes, noticable ones are:
- Panic on reading non-utf8 characters
- 100% CPU when input is not ready
-
v0.5.2 Changes
October 22, 2018- ๐ fix: stop command immediately on accept or abort.
- minor optimization over ASCII inputs.
- #90: escape quotes in specified preview command
-
v0.5.1 Changes
June 24, 2018๐ Use cross to build targets.
-
v0.5.0 Changes
June 12, 2018๐ Change the field syntax to be fzf compatible.
- ๐
Previously it was git style
- fields starts with
0
1..3
results in2, 3
(which is0, 1, 2, 3
minus0, 1
)
- fields starts with
- ๐
Now it is
cut
style- fields starts with
1
1..3
results in1, 2, 3
- fields starts with
- ๐
Previously it was git style
-
v0.4.0 Changes
June 03, 2018๐จ Refactor skim into a library. With minor bug fixes:
- ๐ support multiple arguments, to be a drop-in replacement of fzf.
- ๐ support negative range field. (e.g.
-1
to specify the last field) - respond to terminal resize event on Mac.
-
v0.3.2 Changes
January 18, 2018Some minor enhancements that might comes handy.
- Reserve all fzf options, so that skim can be a drop-in replacement of fzf.
- ๐ Fix: the number of columns a unicode character occupies
- Accept multiple values for most options. So that you can safely put them
in
$SKIM_DEFAULT_OPTIONS
and override it in command line.
Thanks to @magnetophon for the bug report and feature requests.
-
v0.3.1 Changes
December 04, 2017๐ Support more options, and reserve several others. The purpose is to reuse
fzf.vim
as much as possible.- ๐จ
--print0
: use NUL(\0) as field separator for output. --read0
: read input delimited by NUL(\0) characters- 0๏ธโฃ
--tabstop
: allow customizing tabstop (default to 8). --no-hscroll
: disable hscroll on match.- reserve several other options, skim will do nothing on them instead of throwing errors.
- ๐จ
-
v0.3.0 Changes
September 21, 2017๐ This release starts from adding
--height
featuren, ends up a big change in the code base.- ๐ feature:
--bind
accept character keys. Only Ctrl/Alt/F keys were accepted. - ๐ feature: support multiple
--bind
options. (replace getopts with clap.rs) - ๐ feature:
--tac
to reverse the order of input lines. - ๐ feature:
--preview
to show preview of current selected line. - ๐ feature:
--height
to use only part instead of full of the screen. - โ test: use tmux for integration test
- replace ncurses-rs with termion, now skim is fully rust, no C bindings.
- ๐ feature: