Projects STRLCPY fzf Commits 334a4fa1
🤬
Revision indexing in progress... (symbol navigation in revisions will be accurate after indexed)
  • ■ ■ ■ ■ ■ ■
    CHANGELOG.md
    1 1  CHANGELOG
    2 2  =========
    3 3   
     4 +0.21.1
     5 +------
     6 +- Shell extension
     7 + - CTRL-R will remove duplicate commands
     8 +- fzf-tmux
     9 + - Supports tmux popup window (require tmux 3.2 or above)
     10 + - ```sh
     11 + # 50% width and height
     12 + fzf-tmux -p
     13 + 
     14 + # 80% width and height
     15 + fzf-tmux -p 80%
     16 + 
     17 + # 80% width and 40% height
     18 + fzf-tmux -p 80%,40%
     19 + fzf-tmux -w 80% -h 40%
     20 + 
     21 + # Window position
     22 + fzf-tmux -w 80% -h 40% -x 0 -y 0
     23 + fzf-tmux -w 80% -h 40% -y 1000
     24 + 
     25 + # Write ordinary fzf options after --
     26 + fzf-tmux -p -- --reverse --info=inline --margin 2,4 --border
     27 + ```
     28 + - On macOS, you can build the latest tmux from the source with
     29 + `brew install tmux --HEAD`
     30 +- Bug fixes
     31 + - Fixed Windows file traversal not to include directories
     32 + - Fixed ANSI colors with `--keep-right`
     33 + - Fixed _fzf_complete for zsh
     34 +- Built with Go 1.14.1
     35 + 
    4 36  0.21.0
    5 37  ------
    6 38  - `--height` option is now available on Windows as well (@kelleyma49)
    skipped 833 lines
  • ■ ■ ■ ■
    install
    skipped 1 lines
    2 2   
    3 3  set -u
    4 4   
    5  -version=0.21.0
     5 +version=0.21.1
    6 6  auto_completion=
    7 7  key_bindings=
    8 8  update_config=2
    skipped 387 lines
  • ■ ■ ■ ■
    install.ps1
    1  -$version="0.21.0"
     1 +$version="0.21.1"
    2 2   
    3 3  if ([Environment]::Is64BitProcess) {
    4 4   $binary_arch="amd64"
    skipped 70 lines
  • ■ ■ ■ ■
    man/man1/fzf-tmux.1
    skipped 20 lines
    21 21  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    22 22  THE SOFTWARE.
    23 23  ..
    24  -.TH fzf-tmux 1 "Mar 2020" "fzf 0.21.0" "fzf-tmux - open fzf in tmux split pane"
     24 +.TH fzf-tmux 1 "Apr 2020" "fzf 0.21.1" "fzf-tmux - open fzf in tmux split pane"
    25 25   
    26 26  .SH NAME
    27 27  fzf-tmux - open fzf in tmux split pane
    skipped 42 lines
  • ■ ■ ■ ■
    man/man1/fzf.1
    skipped 20 lines
    21 21  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    22 22  THE SOFTWARE.
    23 23  ..
    24  -.TH fzf 1 "Mar 2020" "fzf 0.21.0" "fzf - a command-line fuzzy finder"
     24 +.TH fzf 1 "Apr 2020" "fzf 0.21.1" "fzf - a command-line fuzzy finder"
    25 25   
    26 26  .SH NAME
    27 27  fzf - a command-line fuzzy finder
    skipped 765 lines
  • ■ ■ ■ ■
    src/constants.go
    skipped 9 lines
    10 10   
    11 11  const (
    12 12   // Current version
    13  - version = "0.21.0"
     13 + version = "0.21.1"
    14 14   
    15 15   // Core
    16 16   coordinatorDelayMax time.Duration = 100 * time.Millisecond
    skipped 70 lines
Please wait...
Page is in error, reload to recover