1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
|
" some map
" map n to <C-f> to goto next page
"map n <C-f>
" and p to prepage
"map p <C-b>
" map I to zi, and O to zo
"map I zi
"map O zo
" if start apvlv as fullscreen mode, default is no
"set fullscreen=no
" zoom value, default is fitwidth
" zoom has 4 styles
" a float type number
" fitwidth
" fitheight
" normal
"set zoom=fitwidth
" set window size
"set width=800
"set height=600
" set command timeout between two key press
"set commandtimeout=2000
" set default dir
"set defaultdir=C:\
" set weather use continuous view
" make sure the autoscrollpage is set to "yes" if you want to set this to yes
"set continuous=yes
" set a pad to continuous page
"set continuouspad=2
" set if auto scroll page when at the end or begin of one pdf page
"set autoscrollpage=yes
" set if auto scroll doc from 1st page when goto the last page
"set autoscrolldoc=yes
" set if disable ~/.apvlvinfo, default is no
"set noinfo=no
" set if wrapscan text
"set wrapscan = yes
" set double click action
" option value is 'word', 'line' or 'page'
"set doubleclick = page
" set GUI options
" m means menu, T means toolbar
"set guioptions = mT
" set if reverted pdf page
"set reverted = no
|