From 51a3f598bb06dd3ee91a9e72b74e3d88777badc8 Mon Sep 17 00:00:00 2001 From: h-east Date: Thu, 14 Nov 2024 12:27:28 +0900 Subject: [PATCH] Update pi_netrw.{txt,jax} --- doc/pi_netrw.jax | 6 +++--- en/pi_netrw.txt | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/doc/pi_netrw.jax b/doc/pi_netrw.jax index 5ce9f4221..d0546bada 100644 --- a/doc/pi_netrw.jax +++ b/doc/pi_netrw.jax @@ -1,4 +1,4 @@ -*pi_netrw.txt* For Vim バージョン 9.1. Last change: 2024 Nov 09 +*pi_netrw.txt* For Vim バージョン 9.1. Last change: 2024 Nov 12 ------------------------------------------------ NETRW REFERENCE MANUAL by Charles E. Campbell @@ -1469,9 +1469,9 @@ html, gif, jpeg, (word/office) doc などのファイルは専用ハンドラ ( return matchstr(getline('.')[col('.')-1:], \ '\[.\{-}\](\zs' .. g:netrw_regex_url .. '\ze\(\s\+.\{-}\)\?)') endif + return '' finally call winrestview(save_view) - return '' endtry endfunction @@ -1484,9 +1484,9 @@ html, gif, jpeg, (word/office) doc などのファイルは専用ハンドラ ( return matchstr(getline('.')[col('.') - 1 : ], \ 'href=["'.."'"..']\?\zs\S\{-}\ze["'.."'"..']\?/\?>') endif + return '' finally call winrestview(save_view) - return '' endtry endfunction < diff --git a/en/pi_netrw.txt b/en/pi_netrw.txt index c82a1bdee..a783fe9ac 100644 --- a/en/pi_netrw.txt +++ b/en/pi_netrw.txt @@ -1,4 +1,4 @@ -*pi_netrw.txt* For Vim version 9.1. Last change: 2024 Nov 09 +*pi_netrw.txt* For Vim version 9.1. Last change: 2024 Nov 12 ------------------------------------------------ NETRW REFERENCE MANUAL by Charles E. Campbell @@ -1505,9 +1505,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 @@ -1520,9 +1520,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 <