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
105
106
|
" Toggle Zoom
function! utils#ZoomToggle()
if exists('t:zoomed') && t:zoomed
execute t:zoom_winrestcmd
let t:zoomed = 0
else
let t:zoom_winrestcmd = winrestcmd()
resize
vertical resize
let t:zoomed = 1
endif
endfunction
"command! ZoomToggle call ZoomToggle()
"-------------------------------------------------
" Toggle DiagnosticsOpenFloat
augroup OpenFloat
autocmd CursorHold,CursorHoldI * lua vim.diagnostic.open_float(nil, {focusable = false,})
augroup END
function! utils#ToggleDiagnosticsOpenFloat()
" Switch the toggle variable
let g:DiagnosticsOpenFloat = !get(g:, 'DiagnosticsOpenFloat', 1)
" Reset group
augroup OpenFloat
autocmd!
augroup END
" Enable if toggled on
if g:DiagnosticsOpenFloat
augroup OpenFloat
autocmd! CursorHold,CursorHoldI * lua vim.diagnostic.open_float(nil, {focusable = false,})
"autocmd! CursorHold,CursorHoldI * lua vim.diagnostic.open_float(nil, {focusable = false,}) print ("vim.diagnostic.open_float enabled...")
augroup END
endif
endfunction
"command! ToggleDiagonsticsOpenFloat call ToggleDiagnosticsOpenFloat()
"-------------------------------------------------
" Toggle transparency
let t:is_transparent = 0
function! utils#Toggle_transparent_background()
if t:is_transparent == 0
hi Normal guibg=#111111 ctermbg=black
let t:is_transparent = 1
else
hi Normal guibg=NONE ctermbg=NONE
let t:is_transparent = 0
endif
endfunction
"nnoremap <leader>tb :call Toggle_transparent_background()<CR>
"-------------------------------------------------
" Toggle statusline
let s:hidden_all = 0
function! ToggleHiddenAll()
if s:hidden_all == 0
let s:hidden_all = 1
set noshowmode
set noruler
set laststatus=0
set noshowcmd
else
let s:hidden_all = 0
set showmode
set ruler
set laststatus=2
set showcmd
endif
endfunction
"nnoremap <S-h> :call ToggleHiddenAll()<CR>
"-------------------------------------------------
" Open last closed buffer
function! OpenLastClosed()
let last_buf = bufname('#')
if empty(last_buf)
echo "No recently closed buffer found"
return
endif
let result = input("Open ". last_buf . " in (n)ormal (v)split, (t)ab or (s)plit ? (n/v/t/s) : ")
if empty(result) || (result !=# 'v' && result !=# 't' && result !=# 's' && result !=# 'n')
return
endif
if result ==# 't'
execute 'tabnew'
elseif result ==# 'v'
execute "vsplit"
elseif result ==# 's'
execute "split"
endif
execute 'b ' . last_buf
endfunction
"-------------------------------------------------
|