플러스로 기본 선택
왜 기본 선택?
인터넷에서 보는 대부분의 nvim 사용자는 클립보드를 "unnamedplus"로 설정하여 "기본 선택"을 포기합니다. 처음부터 Linux를 사용하는 사람들은 일부 텍스트를 선택하고 마우스 가운데 버튼을 눌러 텍스트를 다른 곳에 붙여넣는 것과 같습니다.
시스템에 두 개의 독립적인 클립보드를 가질 수 있다면 그것을 사용하지 않는 이유는 무엇입니까? vim에서는 다음과 같이 입력하면 됩니다.
:reg *,+
기본 선택 항목은
*
로, 클립보드는 +
로 표시됩니다.Firefox에서 기본 선택 붙여넣기를 수정합니다.
내 awesomeWM에는 다음 코드가 있습니다(05~09행).
01 clientbuttons = gears.table.join(
02 awful.button({ }, 1, function (c)
03 c:emit_signal("request::activate", "mouse_click", {raise = true})
04 end),
05 -- paste primary selection Ctrl + button1
06 awful.button({ "Control" }, 1, function (c)
07 c:emit_signal("request::activate", "mouse_click", {raise = true})
08 awful.spawn.with_shell("xdotool click --delay 0 --clearmodifiers 2")
09 end),
10 awful.button({ modkey }, 1, function (c)
11 c:emit_signal("request::activate", "mouse_click", {raise = true})
12 awful.mouse.client.move(c)
13 end),
14 awful.button({ modkey }, 3, function (c)
15 c:emit_signal("request::activate", "mouse_click", {raise = true})
16 awful.mouse.client.resize(c)
17 end)
18 )
기본 선택 항목을 붙여넣기 위해 firefox를 가운데 클릭할 수는 없지만 이제 Ctrl + button1을 눌러 다시 작동하도록 할 수 있습니다.
neovim의 기본 선택:
local function map(mode, lhs, rhs, opts)
local options = { noremap = true, silent = true }
if opts then
if opts.desc then
opts.desc = "init.lua: " .. opts.desc
end
options = vim.tbl_extend('force', options, opts)
end
vim.keymap.set(mode, lhs, rhs, options)
end
-- avoid clipboard hacking security issue
-- http://thejh.net/misc/website-terminal-copy-paste
-- inoremap <C-R>+ <C-r><C-o>+
map("i", "<C-r>+", "<C-r><C-o>+", { desc = 'fix terminal copy paste hack issue' })
map("i", "<S-Insert>", "<C-r><C-o>*", { desc = 'fix terminal copy paste hack issue' })
-- copy to the primary selection on mouse release
map("v", "<LeftRelease>", '"*y' , {silent = true, desc = "Copy selection to primary selection"})
bspwm에 기본 선택 항목 붙여넣기
# %%hotkey: paste primary selection %%
ctrl + alt + ~button1
xdotool click --delay 0 --clearmodifiers 2
# %%hotkey: paste primary selection using keyboard %%
shift + insert
xdotool click --delay 0 --clearmodifiers 2
Reference
이 문제에 관하여(플러스로 기본 선택), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/voyeg3r/primary-selection-as-a-plus-5bae텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)