Skip to content

Commit 66407a7

Browse files
committed
ignore bracketed mode chars (t_PS, t_PE)
so pasting from clipboard works in popup M README.md M autoload/scope/popup.vim M doc/scope.txt M plugin/scope.vim
1 parent 1ef896d commit 66407a7

File tree

4 files changed

+13
-34
lines changed

4 files changed

+13
-34
lines changed

README.md

-6
Original file line numberDiff line numberDiff line change
@@ -394,12 +394,6 @@ Following highlight groups modify the content of popup window:
394394
- `ScopeMenuSubtle`: Line number, file name, and path. Default: Linked to `Comment`.
395395
- `ScopeMenuCurrent`: Special item indicating current status (used only when relevant). Default: Linked to `Statement`.
396396

397-
> [!NOTE]
398-
> By default, bracketed paste is disabled. This facilitates pasting from clipboard into the popup window. To enable bracketed paste, simply set the following global variable (you might see additional characters when pasting from clipboard).
399-
> ```
400-
> g:scope_bracketed_paste = true
401-
> ```
402-
403397
### Writing Your Own Extension
404398

405399
The search functionality encompasses four fundamental patterns:

autoload/scope/popup.vim

+13-5
Original file line numberDiff line numberDiff line change
@@ -119,9 +119,15 @@ export class FilterMenu
119119
\ "\<X1Mouse>", "\<X1Release>", "\<X1Drag>", "\<X2Mouse>", "\<X2Release>", "\<X2Drag>",
120120
\ "\<ScrollWheelLeft", "\<ScrollWheelRight>"
121121
]
122-
# this sequence of bytes are generated when left/right mouse is pressed and
123-
# mouse wheel is rolled
124-
var ignore_input_wtf = [128, 253, 100]
122+
var ignore_input_utf8 = [
123+
# this sequence of bytes are generated when left/right mouse is
124+
# pressed and mouse wheel is rolled
125+
[128, 253, 100],
126+
# In xterm, when bracketed paste mode is set, the program will receive: ESC [ 200 ~,
127+
# followed by the pasted text, followed by ESC [ 201 ~.
128+
[128, 80, 83],
129+
[128, 80, 69],
130+
]
125131
var ctrl_r_active = false
126132

127133
this.idp = popup_create([$'{options.promptchar} '],
@@ -224,8 +230,10 @@ export class FilterMenu
224230
if ln == getcurpos(id)[1]
225231
win_execute(id, "normal! G")
226232
endif
227-
# Ignoring fancy events and double clicks, which are 6 char long: `<80><fc> <80><fd>.`
228-
elseif ignore_input->index(key) == -1 && strchars(key) != 6 && str2list(key) != ignore_input_wtf
233+
elseif ignore_input->index(key) == -1 &&
234+
# ignoring double clicks, which are 6 char long: `<80><fc> <80><fd>.`
235+
strchars(key) != 6 &&
236+
ignore_input_utf8->index(str2list(key)) == -1
229237
if ["\<S-Up>", "\<S-Down>", "\<C-Up>", "\<C-Down>"]->index(key) > -1
230238
if history->has_key(this.title)
231239
var listlen = history[this.title]->len()

doc/scope.txt

-8
Original file line numberDiff line numberDiff line change
@@ -389,14 +389,6 @@ Following highlight groups modify the content of popup window:
389389
- `ScopeMenuCurrent`: Special item indicating current status (used only when
390390
relevant). Default: Linked to `Statement`.
391391

392-
NOTE: ~
393-
By default, bracketed paste is disabled. This facilitates pasting from
394-
clipboard into the popup window. To enable bracketed paste, simply set the
395-
following global variable (you might see additional characters when pasting
396-
from clipboard).
397-
>
398-
g:scope_bracketed_paste = true
399-
400392
==============================================================================
401393
5. Writing Your Own Extension *scope-extension*
402394

plugin/scope.vim

-15
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,3 @@ import autoload '../autoload/scope/command.vim'
1313
set grepformat^=%f:%l:%c:%m
1414

1515
command -nargs=+ -complete=custom,command.Completor Scope command.DoCommand(<f-args>)
16-
17-
# Disable bracketed paste (otherwise pasting from clipboard does not work in popup)
18-
# https://github.com/vim/vim/issues/11766
19-
g:scope_bracketed_paste = false
20-
21-
augroup ScopeAutoCmds | autocmd!
22-
au VimEnter * {
23-
if !g:scope_bracketed_paste
24-
&t_BE = ""
25-
&t_BD = "\e[?2004l"
26-
exec "set t_PS=\e[200~"
27-
exec "set t_PE=\e[201~"
28-
endif
29-
}
30-
augroup END

0 commit comments

Comments
 (0)