mirror of
https://github.com/vim-airline/vim-airline.git
synced 2026-09-04 13:56:57 +08:00
always enable paste detection.
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
" MIT License. Copyright (c) 2013 Bailey Ling.
|
||||
" vim: et ts=2 sts=2 sw=2
|
||||
|
||||
let g:airline#fragments#symbols = get(g:, 'airline#fragments#symbols', {})
|
||||
call extend(g:airline#fragments#symbols, {
|
||||
\ 'paste': get(g:, 'airline_paste_symbol', g:airline_left_alt_sep.' PASTE')
|
||||
\ }, 'keep')
|
||||
|
||||
function! airline#fragments#get_paste()
|
||||
return &paste ? ' ' . g:airline#fragments#symbols.paste : ''
|
||||
endfunction
|
||||
|
||||
Reference in New Issue
Block a user