-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathquickui.vim
106 lines (87 loc) · 3.07 KB
/
quickui.vim
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
"======================================================================
"
" quickui.vim -
"
" Created by skywind on 2019/12/26
" Last Modified: 2021/12/08 23:01
"
"======================================================================
" vim: set noet fenc=utf-8 ff=unix sts=4 sw=4 ts=4 :
" require vim 8.2+
if has('patch-8.2.1') == 0 || has('nvim')
" finish
endif
"----------------------------------------------------------------------
" exports
"----------------------------------------------------------------------
let g:quickui_version = '1.4.3'
"----------------------------------------------------------------------
" internals
"----------------------------------------------------------------------
let s:home = fnamemodify(resolve(expand('<sfile>:p')), ':h')
let s:rtp = fnamemodify(s:home, ':h')
"----------------------------------------------------------------------
" QuickUI command
"----------------------------------------------------------------------
command! -bang -nargs=* -complete=customlist,quickui#command#complete
\ QuickUI call quickui#command#run('<bang>', <q-args>)
"----------------------------------------------------------------------
" setup variables
"----------------------------------------------------------------------
if exists('g:quickui_border_style')
let g:quickui#style#border = get(g:, 'quickui_border_style', 1)
endif
function! s:set_quickui_hi()
" hi! QuickDefaultSel ctermbg=
hi! link QuickBG QuickDefaultBackground
hi! link QuickSel QuickDefaultSel
hi! link QuickKey QuickDefaultKey
hi! link QuickOff QuickDefaultDisable
hi! link QuickHelp QuickDefaultHelp
hi! link QuickBorder QuickDefaultBorder
hi! link QuickTermBorder QuickDefaultTermBorder
hi! link QuickPreview QuickDefaultPreview
" for input box
hi! link QuickInput QuickDefaultInput
hi! link QuickCursor QuickDefaultCursor
hi! link QuickVisual QuickDefaultVisual
endfunc
function! QuickThemeChange(theme)
let theme = 'default'
if a:theme == ''
let theme = 'default'
elseif a:theme == 'default' || a:theme == 'ansi'
let theme = 'default'
elseif a:theme == 'borland' || a:theme == 'turboc'
let theme = 'borland'
elseif a:theme == 'colorscheme' || a:theme == 'system' || a:theme == 'vim'
let theme = 'system'
elseif a:theme == 'gruvbox'
let theme = 'gruvbox'
elseif a:theme == 'solarized'
let theme = 'solarized'
elseif a:theme == 'papercol' || a:theme == 'papercol-dark'
let theme = 'papercol_dark'
elseif a:theme == 'papercol dark'
let theme = 'papercol_dark'
elseif a:theme == 'papercol-light' || a:theme == 'papercol light'
let theme = 'papercol_light'
else
let theme = a:theme
endif
let s:fname = s:rtp . '/colors/quickui/' . theme . '.vim'
if !filereadable(s:fname)
let s:fname = s:rtp . '/colors/quickui/borland.vim'
endif
if filereadable(s:fname)
exec "source " . fnameescape(s:fname)
endif
call s:set_quickui_hi()
endfunc
let s:scheme = get(g:, 'quickui_color_scheme', '')
call QuickThemeChange(s:scheme)
augroup quickui "{{{
autocmd!
autocmd Colorscheme * call QuickThemeChange(get(g:, 'quickui_color_scheme', ''))
augroup END "}}}
call s:set_quickui_hi()