Christian Brabandt

Results 719 comments of Christian Brabandt
trafficstars

> Preferably, this would also include read-only access to the clipboard, but even write-access only would already be a huge improvement. I am not sure I understand this comment and...

> As per my understanding, when the compile flag is missing, these registers simply turn into another Vim-internal register. No, Vim falls back to the `0` register in that case.

How about the following patch: ```patch diff --git a/src/clipboard.c b/src/clipboard.c index 8b9850e44..6c766047e 100644 --- a/src/clipboard.c +++ b/src/clipboard.c @@ -2220,10 +2220,12 @@ adjust_clip_reg(int *rp) *rp = ((clip_unnamed_saved & CLIP_UNNAMED_PLUS) && clip_plus.available)...

I was waiting for feedback before considering it to merge it to Vim

Thanks, I'll create a PR for this. It's not ready yet for inclusion because we should have a test for this.