From 898a6a390bf2a9b32b4cbf1bb5b91476f1f74bed Mon Sep 17 00:00:00 2001 From: zwyyy456 Date: Sat, 25 Oct 2025 10:53:32 +0800 Subject: [PATCH 1/2] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E5=9C=A8=20unix?= =?UTF-8?q?=20=E7=BB=88=E7=AB=AF=E4=B8=AD=E4=BD=BF=E7=94=A8=20vim=EF=BC=8C?= =?UTF-8?q?=E6=96=B9=E5=90=91=E9=94=AE=E6=97=A0=E6=B3=95=E6=AD=A3=E7=A1=AE?= =?UTF-8?q?=E8=A7=A3=E6=9E=90=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- plugin/terminal_help.vim | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/plugin/terminal_help.vim b/plugin/terminal_help.vim index 1b637d3..3045318 100644 --- a/plugin/terminal_help.vim +++ b/plugin/terminal_help.vim @@ -434,6 +434,10 @@ if has('nvim') == 0 && has('gui_running') == 0 call s:key_escape('', 'OQ') call s:key_escape('', 'OR') call s:key_escape('', 'OS') + call s:key_escape('', 'OA') + call s:key_escape('', 'OB') + call s:key_escape('', 'OC') + call s:key_escape('', 'OD') endif From c5eb8367f2b3e815b0909179e1d989fc67c73f26 Mon Sep 17 00:00:00 2001 From: zengwy Date: Sat, 25 Oct 2025 14:48:20 +0800 Subject: [PATCH 2/2] =?UTF-8?q?fix:=20=E5=AF=B9=E4=BA=8E=E9=9D=9E=20unix?= =?UTF-8?q?=20=E7=BB=88=E7=AB=AF=EF=BC=8C=E4=B8=8D=E6=B7=BB=E5=8A=A0?= =?UTF-8?q?=E6=96=B9=E5=90=91=E9=94=AE=E7=9A=84=E9=87=8D=E6=96=B0=E6=98=A0?= =?UTF-8?q?=E5=B0=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- plugin/terminal_help.vim | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/plugin/terminal_help.vim b/plugin/terminal_help.vim index 3045318..af1080f 100644 --- a/plugin/terminal_help.vim +++ b/plugin/terminal_help.vim @@ -434,10 +434,12 @@ if has('nvim') == 0 && has('gui_running') == 0 call s:key_escape('', 'OQ') call s:key_escape('', 'OR') call s:key_escape('', 'OS') - call s:key_escape('', 'OA') - call s:key_escape('', 'OB') - call s:key_escape('', 'OC') - call s:key_escape('', 'OD') + if has('unix') + call s:key_escape('', 'OA') + call s:key_escape('', 'OB') + call s:key_escape('', 'OC') + call s:key_escape('', 'OD') + endif endif