From 8e6d6355d0ea8d861b96c0a5e392fa853ab93e3b Mon Sep 17 00:00:00 2001 From: Jan Larres Date: Thu, 20 Jan 2011 22:18:33 +1300 Subject: [PATCH] Small reformattings --- plugin/tagbar.vim | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/plugin/tagbar.vim b/plugin/tagbar.vim index 0c4bbdb..a949599 100644 --- a/plugin/tagbar.vim +++ b/plugin/tagbar.vim @@ -157,7 +157,7 @@ function! s:OpenWindow() endif let openpos = g:tagbar_left ? 'topleft vertical ' : 'botright vertical ' - execute 'silent! keepalt ' . openpos . g:tagbar_width . 'split ' . '__Tagbar__' + exe 'silent! keepalt ' . openpos . g:tagbar_width . 'split ' . '__Tagbar__' setlocal noreadonly " in case the "view" mode is used setlocal buftype=nofile @@ -627,7 +627,8 @@ function! s:RenderContent(fname, ftype) " Print tags for kind in typeinfo.kinds - let curtags = filter(copy(fileinfo.tags), 'v:val.fields.kind == kind[0]') + let curtags = filter(copy(fileinfo.tags), + \ 'v:val.fields.kind == kind[0]') if empty(curtags) continue