Closed qbai closed 4 days ago
Text is copied to the primary clipboard when selected if the useprimary
option is enabled, but useprimary
is enabled by default so the option may not need to be changed. The primary clipboard content can be pasted using the PastePrimary
action. Right click can be binded to the action when running this command in micro: bind MouseRight PastePrimary
. A line can also be added in ~/.config/micro/bindings.json
like this to bind the action:
{
"MouseRight": "PastePrimary"
}
Please note that the primary clipboard is different with the regular clipboard that other actions in micro use. Both can be used in other programs and may also contain different text content.
thanks a lot
as titled