From 1367651b84cf5be5de40b9cf5347f1caab961704 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Mon, 6 Nov 2017 19:56:12 +1300 Subject: Adjust indentation to conventional 2-spaces --- plugin/nextag.vim | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/plugin/nextag.vim b/plugin/nextag.vim index 56290bc..5ae1a17 100644 --- a/plugin/nextag.vim +++ b/plugin/nextag.vim @@ -13,7 +13,7 @@ " in compatible mode or running a version of Vim that's too old. " if exists('g:loaded_nextag') || &compatible || v:version < 700 - finish + finish endif let g:loaded_nextag = 1 @@ -21,25 +21,25 @@ let g:loaded_nextag = 1 " Search for a SGML tag with the specified flag. " function! s:MoveToSGMLTag(direction, mode, count) - if a:mode == 'v' - normal! gv - endif - let l:visualfix = a:mode == 'v' && a:direction == 'next' && &selection != 'exclusive' ? 1 : 0 - for l:iteration in range(1, a:count) - call search('\m<\/\?\w\+[^>]*>', a:direction == 'next' ? 'W' : 'Wb') - if l:visualfix - normal! l - endif - endfor + if a:mode == 'v' + normal! gv + endif + let l:visualfix = a:mode == 'v' && a:direction == 'next' && &selection != 'exclusive' ? 1 : 0 + for l:iteration in range(1, a:count) + call search('\m<\/\?\w\+[^>]*>', a:direction == 'next' ? 'W' : 'Wb') if l:visualfix - normal! h + normal! l endif + endfor + if l:visualfix + normal! h + endif endfunction " " Default remappings. " for s:mode in ['n', 'o', 'v'] - execute s:mode . 'map . :call MoveToSGMLTag("next", "' . s:mode . '", v:count1)' - execute s:mode . 'map , :call MoveToSGMLTag("prev", "' . s:mode . '", v:count1)' + execute s:mode . 'map . :call MoveToSGMLTag("next", "' . s:mode . '", v:count1)' + execute s:mode . 'map , :call MoveToSGMLTag("prev", "' . s:mode . '", v:count1)' endfor -- cgit v1.2.3