Merge pull request #31204 from zeertzjq/vim-8b96858

vim-patch: doc updates
This commit is contained in:
zeertzjq 2024-11-14 08:08:35 +08:00 committed by GitHub
commit b820b0e47e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

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