mirror of
https://github.com/ernstwi/vim-secret.git
synced 2026-05-12 01:58:44 +08:00
Initial commit
This commit is contained in:
commit
9d395d316f
8 changed files with 790 additions and 0 deletions
17
plugin/secret.vim
Normal file
17
plugin/secret.vim
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
command! -bang -nargs=* Secret call secret#secret(<bang>1, <f-args>)
|
||||
|
||||
if !exists('g:secret_cchar')
|
||||
let g:secret_cchar = '•'
|
||||
endif
|
||||
|
||||
if !exists('g:secret_visibility')
|
||||
let g:secret_visibility = 'word'
|
||||
endif
|
||||
|
||||
if !exists('g:secret_timeout_normal')
|
||||
let g:secret_timeout_normal = 1
|
||||
endif
|
||||
|
||||
if !exists('g:secret_timeout_insert')
|
||||
let g:secret_timeout_insert = 0
|
||||
endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue