Merge pull request #1117 from 987poiuytrewq/middle_click_buffers
Make middle clickable buffers (only Neovim)
This commit is contained in:
commit
3f2247593a
|
@ -73,7 +73,7 @@ function! airline#extensions#tabline#buffers#get()
|
||||||
|
|
||||||
" Neovim feature: Have clickable buffers
|
" Neovim feature: Have clickable buffers
|
||||||
if has("tablineat")
|
if has("tablineat")
|
||||||
call b.add_raw('%'.nr.'@airline#extensions#tabline#buffers#switchbuf@')
|
call b.add_raw('%'.nr.'@airline#extensions#tabline#buffers#clickbuf@')
|
||||||
endif
|
endif
|
||||||
if s:buffer_idx_mode
|
if s:buffer_idx_mode
|
||||||
if len(s:number_map) > 0
|
if len(s:number_map) > 0
|
||||||
|
@ -196,10 +196,18 @@ function s:map_keys()
|
||||||
endif
|
endif
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
function airline#extensions#tabline#buffers#switchbuf(minwid, clicks, button, modifiers) abort
|
function airline#extensions#tabline#buffers#clickbuf(minwid, clicks, button, modifiers) abort
|
||||||
" Run the following code only on a single left mouse button click without modifiers pressed
|
" Clickable buffers
|
||||||
" works only in recent NeoVim with has('tablineat')
|
" works only in recent NeoVim with has('tablineat')
|
||||||
if a:clicks == 1 && a:button is# 'l' && a:modifiers !~# '[^ ]'
|
|
||||||
sil execute 'buffer' a:minwid
|
" single mouse button click without modifiers pressed
|
||||||
|
if a:clicks == 1 && a:modifiers !~# '[^ ]'
|
||||||
|
if a:button is# 'l'
|
||||||
|
" left button - switch to buffer
|
||||||
|
silent execute 'buffer' a:minwid
|
||||||
|
elseif a:button is# 'm'
|
||||||
|
" middle button - delete buffer
|
||||||
|
silent execute 'bdelete' a:minwid
|
||||||
|
endif
|
||||||
endif
|
endif
|
||||||
endfunction
|
endfunction
|
||||||
|
|
|
@ -508,6 +508,11 @@ are supported!
|
||||||
* enable/disable displaying buffers with a single tab. (c)
|
* enable/disable displaying buffers with a single tab. (c)
|
||||||
let g:airline#extensions#tabline#show_buffers = 1
|
let g:airline#extensions#tabline#show_buffers = 1
|
||||||
<
|
<
|
||||||
|
|
||||||
|
Note: If you are using neovim (has('tablineat') = 1), then you can click
|
||||||
|
on the tabline with the left mouse button to switch to that buffer, and
|
||||||
|
with the middle mouse button to delete that buffer.
|
||||||
|
|
||||||
* enable/disable displaying tabs, regardless of number. (c)
|
* enable/disable displaying tabs, regardless of number. (c)
|
||||||
let g:airline#extensions#tabline#show_tabs = 1
|
let g:airline#extensions#tabline#show_tabs = 1
|
||||||
<
|
<
|
||||||
|
|
Loading…
Reference in New Issue