Projects STRLCPY fzf Commits c1c35516
🤬
  • ■ ■ ■ ■ ■ ■
    CHANGELOG.md
    skipped 7 lines
    8 8   printf "\e[38;5;208mOption 1\e[m\nOption 2" | fzf --ansi
    9 9   printf "\e[38:5:208mOption 1\e[m\nOption 2" | fzf --ansi
    10 10   ```
     11 +- Support `border-{up,down}` as the synonyms for `border-{top,bottom}` in
     12 + `--preview-window`
    11 13   
    12 14  0.32.1
    13 15  ------
    skipped 1285 lines
  • ■ ■ ■ ■ ■ ■
    man/man1/fzf.1
    skipped 188 lines
    189 189  A synonym for \fB--layout=reverse\fB
    190 190   
    191 191  .TP
    192  -.BI "--border" [=STYLE]
     192 +.BI "--border" [=BORDER_OPT]
    193 193  Draw border around the finder
    194 194   
    195 195  .br
    196  -.BR rounded " Border with rounded corners (default)"
     196 +.BR rounded " Border with rounded corners (default)"
    197 197  .br
    198  -.BR sharp " Border with sharp corners"
     198 +.BR sharp " Border with sharp corners"
    199 199  .br
    200  -.BR horizontal " Horizontal lines above and below the finder"
     200 +.BR horizontal " Horizontal lines above and below the finder"
    201 201  .br
    202  -.BR vertical " Vertical lines on each side of the finder"
     202 +.BR vertical " Vertical lines on each side of the finder"
    203 203  .br
    204  -.BR top
     204 +.BR top " (up)"
    205 205  .br
    206  -.BR bottom
     206 +.BR bottom " (down)"
    207 207  .br
    208 208  .BR left
    209 209  .br
    skipped 825 lines
  • ■ ■ ■ ■ ■ ■
    src/options.go
    skipped 1227 lines
    1228 1228   opts.border = tui.BorderHorizontal
    1229 1229   case "border-vertical":
    1230 1230   opts.border = tui.BorderVertical
    1231  - case "border-top":
     1231 + case "border-up", "border-top":
    1232 1232   opts.border = tui.BorderTop
    1233  - case "border-bottom":
     1233 + case "border-down", "border-bottom":
    1234 1234   opts.border = tui.BorderBottom
    1235 1235   case "border-left":
    1236 1236   opts.border = tui.BorderLeft
    skipped 550 lines
Please wait...
Page is in error, reload to recover