-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
At the moment only allows tweaking delay for graphics preview. Thanks to Joshua Jensch (a.k.a., patroclos). See vifm#481 (comment)
- Loading branch information
Showing
14 changed files
with
159 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
*vifm-app.txt* For Vifm version 0.11 Last change: 2020 Dec 4 | ||
*vifm-app.txt* For Vifm version 0.11 Last change: 2020 Dec 6 | ||
|
||
Email for bugs and suggestions: <[email protected]> | ||
|
||
|
@@ -3559,6 +3559,22 @@ scope: local | |
|
||
Minimal number of characters for line number field. | ||
|
||
*vifm-'previewoptions'* | ||
previewoptions | ||
type: string list | ||
default: "graphicsdelay:50000" | ||
|
||
Tweaks how previewing is done (in quick view, miller view's column and | ||
view mode). | ||
|
||
item default meaning ~ | ||
graphicsdelay:num 0 delay before drawing graphics (microseconds) | ||
|
||
graphicsdelay is needed if terminal requires some timeout before it can | ||
draw graphics (otherwise it gets lost). | ||
|
||
Default value is used when item is missing from the option. | ||
|
||
*vifm-'previewprg'* | ||
previewprg | ||
type: string | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
" vifm syntax file | ||
" Maintainer: xaizek <[email protected]> | ||
" Last Change: October 6, 2020 | ||
" Last Change: December 6, 2020 | ||
" Inspired By: Vim syntax file by Dr. Charles E. Campbell, Jr. | ||
|
||
if exists('b:current_syntax') | ||
|
@@ -141,13 +141,14 @@ syntax keyword vifmOption contained aproposprg autochpos caseoptions cdpath cd | |
\ followlinks fusehome gdefault grepprg histcursor history hi hlsearch hls | ||
\ iec ignorecase ic iooptions incsearch is laststatus lines locateprg ls | ||
\ lsoptions lsview mediaprg milleroptions millerview mintimeoutlen number nu | ||
\ numberwidth nuw previewprg quickview relativenumber rnu rulerformat ruf | ||
\ runexec scrollbind scb scrolloff sessionoptions ssop so sort sortgroups | ||
\ sortorder sortnumbers shell sh shellflagcmd shcf shortmess shm showtabline | ||
\ stal sizefmt slowfs smartcase scs statusline stl suggestoptions syncregs | ||
\ syscalls tablabel tabprefix tabscope tabstop tabsuffix timefmt timeoutlen | ||
\ title tm trash trashdir ts tuioptions to undolevels ul vicmd viewcolumns | ||
\ vifminfo vimhelp vixcmd wildmenu wmnu wildstyle wordchars wrap wrapscan ws | ||
\ numberwidth nuw previewoptions previewprg quickview relativenumber rnu | ||
\ rulerformat ruf runexec scrollbind scb scrolloff sessionoptions ssop so | ||
\ sort sortgroups sortorder sortnumbers shell sh shellflagcmd shcf shortmess | ||
\ shm showtabline stal sizefmt slowfs smartcase scs statusline stl | ||
\ suggestoptions syncregs syscalls tablabel tabprefix tabscope tabstop | ||
\ tabsuffix timefmt timeoutlen title tm trash trashdir ts tuioptions to | ||
\ undolevels ul vicmd viewcolumns vifminfo vimhelp vixcmd wildmenu wmnu | ||
\ wildstyle wordchars wrap wrapscan ws | ||
|
||
" Disabled boolean options | ||
syntax keyword vifmOption contained noautochpos nocf nochaselinks nodotfiles | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters