Skip to content

Commit

Permalink
Use alphabetical ordering
Browse files Browse the repository at this point in the history
  • Loading branch information
dstein64 committed Oct 19, 2024
1 parent 01d2075 commit 39972bd
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions doc/win.txt
Original file line number Diff line number Diff line change
Expand Up @@ -72,12 +72,6 @@ The following variables can be used to customize the behavior of |vim-win|.
`Variable`
Description `Default`
------------- -------
*g:win_resize_height* `2`
Number of rows to shift when
resizing
*g:win_resize_width* `2`
Number of columns to shift when
resizing
*g:win_disable_version_warning* |v:false|
Set to |v:true| to disable the
version warning
Expand All @@ -86,6 +80,12 @@ The following variables can be used to customize the behavior of |vim-win|.
|vim-win|
*g:win_init_keys* `''`
Initial keypresses
*g:win_resize_height* `2`
Number of rows to shift when
resizing
*g:win_resize_width* `2`
Number of columns to shift when
resizing

The |g:win_ext_command_map| maps |vim-win| command keys to `vim` command
strings. The *Win#exit* string can be used as a command string for exiting
Expand Down
4 changes: 2 additions & 2 deletions plugin/win.vim
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@ endif
" * User Configuration
" ************************************************************

let g:win_resize_height = get(g:, 'win_resize_height', 2)
let g:win_resize_width = get(g:, 'win_resize_width', 2)
let g:win_disable_version_warning =
\ get(g:, 'win_disable_version_warning', v:false)
" g:win_ext_command_map allows additional commands to be added to win.vim. It
Expand Down Expand Up @@ -50,6 +48,8 @@ let g:win_disable_version_warning =
" \ }
let g:win_ext_command_map = get(g:, 'win_ext_command_map', {})
let g:win_init_keys = get(g:, 'win_init_keys', '')
let g:win_resize_height = get(g:, 'win_resize_height', 2)
let g:win_resize_width = get(g:, 'win_resize_width', 2)

" The default highlight groups (for colors) are specified below.
" Change these default colors by defining or linking the corresponding
Expand Down

0 comments on commit 39972bd

Please sign in to comment.