aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2024-11-14 07:21:32 +0800
committerzeertzjq <zeertzjq@outlook.com>2024-11-14 07:21:38 +0800
commit41be1bfe05c0c36d6c3647e626d38cc115b0e679 (patch)
tree72ee6102647d5c18f0b98aacd509aa5a08d93564
parentd410583e7d78a31b07c1c27497c594be82c86b68 (diff)
downloadrneovim-41be1bfe05c0c36d6c3647e626d38cc115b0e679.tar.gz
rneovim-41be1bfe05c0c36d6c3647e626d38cc115b0e679.tar.bz2
rneovim-41be1bfe05c0c36d6c3647e626d38cc115b0e679.zip
vim-patch:9b05326: runtime(doc): improve indentation in examples for netrw-handler
related: vim/vim#16043 https://github.com/vim/vim/commit/9b05326afdb0359a2dd40470b2b47a6e422662e9 Co-authored-by: Christian Brabandt <cb@256bit.org>
-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 27beffd112..09d1369d46 100644
--- a/runtime/doc/pi_netrw.txt
+++ b/runtime/doc/pi_netrw.txt
@@ -1501,7 +1501,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
@@ -1516,7 +1516,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