Remove wayland clipboard workaround

main
Marko Korhonen 2 years ago
parent 9cb6ad7008
commit 9b569a2266
No known key found for this signature in database
GPG Key ID: A7F78BCB859CD890

@ -53,22 +53,3 @@ g.mapleader = " "
o.tabstop = 4
o.shiftwidth = 4
o.smartindent = true
-- Wayland clipboard provider that strips carriage returns (GTK3 issue).
-- This is needed because currently there's an issue where GTK3 applications on
-- Wayland contain carriage returns at the end of the lines (this is a root
-- issue that needs to be fixed).
vim.cmd([[
let g:clipboard = {
\ 'name': 'wayland-strip-carriage',
\ 'copy': {
\ '+': 'wl-copy --foreground --type text/plain',
\ '*': 'wl-copy --foreground --type text/plain --primary',
\ },
\ 'paste': {
\ '+': {-> systemlist('wl-paste --no-newline | tr -d "\r"')},
\ '*': {-> systemlist('wl-paste --no-newline --primary | tr -d "\r"')},
\ },
\ 'cache_enabled': 1,
\ }
]])

Loading…
Cancel
Save