mirror of
https://github.com/vim-airline/vim-airline.git
synced 2025-12-20 19:01:12 +08:00
vim-bookmark extension
This commit is contained in:
23
autoload/airline/extensions/bookmark.vim
Normal file
23
autoload/airline/extensions/bookmark.vim
Normal file
@@ -0,0 +1,23 @@
|
||||
"
|
||||
" MIT License. Copyright (c) 2019 Bjoern Petri <bjoern.petri@sundevil.de>
|
||||
"
|
||||
function! airline#extensions#bookmark#currentbookmark()
|
||||
if get(w:, 'airline_active', 0)
|
||||
let file = expand("%:p")
|
||||
if file ==# ""
|
||||
return
|
||||
endif
|
||||
|
||||
let current_line = line('.')
|
||||
let has_bm = bm#has_bookmark_at_line(file, current_line)
|
||||
let bm = has_bm ? bm#get_bookmark_by_line(file, current_line) : 0
|
||||
let annotation = has_bm ? bm['annotation'] : ""
|
||||
|
||||
return annotation
|
||||
endif
|
||||
return ''
|
||||
endfunction
|
||||
|
||||
function! airline#extensions#bookmark#init(ext)
|
||||
call airline#parts#define_function('bookmark', 'airline#extensions#bookmark#currentbookmark')
|
||||
endfunction
|
||||
Reference in New Issue
Block a user