move the bookmark->string code into the bookmark class
This commit is contained in:
parent
ac544460e4
commit
1532bf1922
@ -281,6 +281,16 @@ function! s:oBookmark.New(name, path) dict
|
|||||||
let newBookmark.path = a:path
|
let newBookmark.path = a:path
|
||||||
return newBookmark
|
return newBookmark
|
||||||
endfunction
|
endfunction
|
||||||
|
" Function: oBookmark.Str() {{{3
|
||||||
|
" Get the string that should be rendered in the view for this bookmark
|
||||||
|
function! s:oBookmark.Str() dict
|
||||||
|
let pathStrMaxLen = 26 - len(self.name)
|
||||||
|
let pathStr = self.path.StrForOS(0)
|
||||||
|
if len(pathStr) > pathStrMaxLen
|
||||||
|
let pathStr = '<' . strpart(pathStr, len(pathStr) - pathStrMaxLen)
|
||||||
|
endif
|
||||||
|
return '>' . self.name . ' [' . pathStr . ']'
|
||||||
|
endfunction
|
||||||
" Function: oBookmark.Write() {{{3
|
" Function: oBookmark.Write() {{{3
|
||||||
" Class method to write all bookmarks to the bookmarks file
|
" Class method to write all bookmarks to the bookmarks file
|
||||||
function! s:oBookmark.Write() dict
|
function! s:oBookmark.Write() dict
|
||||||
@ -2363,14 +2373,7 @@ function! s:RenderBookmarks()
|
|||||||
call cursor(line(".")+1, col("."))
|
call cursor(line(".")+1, col("."))
|
||||||
|
|
||||||
for i in s:oBookmark.Bookmarks()
|
for i in s:oBookmark.Bookmarks()
|
||||||
|
call setline(line(".")+1, i.Str())
|
||||||
let pathStrMaxLen = 26 - len(i.name)
|
|
||||||
let pathStr = i.path.StrForOS(0)
|
|
||||||
if len(pathStr) > pathStrMaxLen
|
|
||||||
let pathStr = '<' . strpart(pathStr, len(pathStr) - pathStrMaxLen)
|
|
||||||
endif
|
|
||||||
|
|
||||||
call setline(line(".")+1,'>' . i.name . ' [' . pathStr . ']')
|
|
||||||
call cursor(line(".")+1, col("."))
|
call cursor(line(".")+1, col("."))
|
||||||
endfor
|
endfor
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user