Skip to content

Commit

Permalink
Remove init_keys option
Browse files Browse the repository at this point in the history
  • Loading branch information
dstein64 committed Oct 19, 2024
1 parent ef4630b commit 2b79ea0
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion autoload/win.vim
Original file line number Diff line number Diff line change
Expand Up @@ -497,7 +497,6 @@ function! win#Win(...)
let l:state = s:Init()
let l:max_reps = str2nr(get(a:, 1, '0'))
let l:reps = 0
call feedkeys(g:win_init_keys, 't')
while l:max_reps <=# 0 || l:reps <# l:max_reps
let l:reps += 1
try
Expand Down
2 changes: 0 additions & 2 deletions doc/win.txt
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,6 @@ The following variables can be used to customize the behavior of |vim-win|.
*g:win_ext_command_map* `{}`
A dictionary for extending
|vim-win|
*g:win_init_keys* `''`
Initial keypresses
*g:win_resize_height* `2`
Number of rows to shift when
resizing
Expand Down
1 change: 0 additions & 1 deletion plugin/win.vim
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ let g:win_disable_version_warning =
" \ 'x': 'Win#exit'
" \ }
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)

Expand Down

0 comments on commit 2b79ea0

Please sign in to comment.