Skip to content

Commit 9386260

Browse files
committed
' >' -> '>'
1 parent 0b1fe9c commit 9386260

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

doc/scrollview.txt

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ are being refreshed, and |v:false| otherwise. It can be accessed from Lua
135135
The plugin executes commands with `:normal!`, which are treated as if they are
136136
typed. `scrollview_refreshing` may be useful for ignoring the corresponding keys
137137
when using |vim.on_key()|.
138-
>
138+
>
139139
vim.on_key(function(char)
140140
if vim.g.scrollview_refreshing then return end
141141
...
@@ -750,7 +750,7 @@ Configuration Example ~
750750
*scrollview-configuration-example*
751751
The variables can be customized in your |init.vim|, as shown in the following
752752
example.
753-
>
753+
>
754754
let g:scrollview_excluded_filetypes = ['nerdtree']
755755
let g:scrollview_current_only = v:true
756756
" Position the scrollbar at the 80th character of the buffer
@@ -763,7 +763,7 @@ Lua Configuration ~
763763
*scrollview.setup()*
764764
A Lua `setup()` function is provided for convenience, to set globally scoped
765765
options (the 'scrollview_' prefix is omitted). For example:
766-
>
766+
>
767767
require('scrollview').setup({
768768
excluded_filetypes = {'nerdtree'},
769769
current_only = true,
@@ -774,7 +774,7 @@ options (the 'scrollview_' prefix is omitted). For example:
774774
})
775775
776776
Alternatively, configuration variables can be set without calling `setup()`.
777-
>
777+
>
778778
vim.g.scrollview_excluded_filetypes = {'nerdtree'},
779779
vim.g.scrollview_current_only = true,
780780
-- Position the scrollbar at the 80th character of the buffer
@@ -897,7 +897,7 @@ colors.
897897

898898
The highlight groups can be customized in your |init.vim|, as shown in the
899899
following example.
900-
>
900+
>
901901
" Link ScrollView highlight to Pmenu highlight
902902
highlight link ScrollView Pmenu
903903
@@ -937,7 +937,7 @@ deregister_sign_spec({spec_id}, {refresh})
937937

938938
*scrollview-signs-functions*
939939
Lua code is necessary for adding new sign functionality to `nvim-scrollview`.
940-
>
940+
>
941941
local scrollview = require('scrollview')
942942
943943
get_sign_eligible_windows() *scrollview.get_sign_eligible_windows()*
@@ -1016,7 +1016,7 @@ Example ~
10161016
The following example shows how to implement sign functionality for showing
10171017
the cursor position. This is for the purpose of illustration; cursor signs are
10181018
already built in to `nvim-scrollview` (enable with `:ScrollViewEnable cursor`).
1019-
>
1019+
>
10201020
local scrollview = require('scrollview')
10211021
10221022
local group = 'cursor'

0 commit comments

Comments
 (0)