runtime(doc): improve indentation in examples for netrw-handler

related: #16043

Signed-off-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
Christian Brabandt
2024-11-13 17:14:39 +01:00
parent 8b96858996
commit 9b05326afd

View File

@ -1505,7 +1505,7 @@ For example, special handlers for links Markdown and HTML are
return matchstr(getline('.')[col('.')-1:],
\ '\[.\{-}\](\zs' .. g:netrw_regex_url .. '\ze\(\s\+.\{-}\)\?)')
endif
return ''
return ''
finally
call winrestview(save_view)
endtry
@ -1520,7 +1520,7 @@ For example, special handlers for links Markdown and HTML are
return matchstr(getline('.')[col('.') - 1 : ],
\ 'href=["'.."'"..']\?\zs\S\{-}\ze["'.."'"..']\?/\?>')
endif
return ''
return ''
finally
call winrestview(save_view)
endtry