aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2024-11-14 08:08:35 +0800
committerGitHub <noreply@github.com>2024-11-14 08:08:35 +0800
commitb820b0e47ec4ebb60af52afd8f90a47914381054 (patch)
tree72ee6102647d5c18f0b98aacd509aa5a08d93564
parente5cd5098f8fabba41efd3b8491b264c5f73326d3 (diff)
parent41be1bfe05c0c36d6c3647e626d38cc115b0e679 (diff)
downloadrneovim-b820b0e47ec4ebb60af52afd8f90a47914381054.tar.gz
rneovim-b820b0e47ec4ebb60af52afd8f90a47914381054.tar.bz2
rneovim-b820b0e47ec4ebb60af52afd8f90a47914381054.zip
Merge pull request #31204 from zeertzjq/vim-8b96858
vim-patch: doc updates
-rw-r--r--runtime/doc/pi_netrw.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/doc/pi_netrw.txt b/runtime/doc/pi_netrw.txt
index 7602568c07..09d1369d46 100644
--- a/runtime/doc/pi_netrw.txt
+++ b/runtime/doc/pi_netrw.txt
@@ -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
<