clipmon
clipmon copied to clipboard
Clipboard monitor for Emacs - monitors clipboard and pastes contents on change
Please see http://debbugs.gnu.org/cgi/bugreport.cgi?bug=22214. Since I'm unsure if this is a problem in Emacs 25 or clipmon (or both) I copy the debbug report here. Regards, Joseph
How can I set (org-cliplink) as clipmon-transform-function so it works? I tried just setting (org-cliplink) it transform function requires s I guess, so this form does not work, any tips...
### Environment - GNU Emacs 27.1 - Kubuntu 20.10 - [config](https://github.com/mrbig033/doom2/blob/main/config.org) ### Issue When clipmon is enabled, copying text in UTF-8 that uses Portuguese accentuation (such as "não") doesn't work...
Hello, I'm trying to use clipmon to insert system clipboard in emacs (I run it from my terminal emulator, not with X) I installed it, and added to my `.emacs`...
### Runtime Environment - OS: MX Linux 18.3 - GNU Emacs 27.0.50 - clipmon 20180129.1054 - Evil version 1.2.14 - [~/.emacs.d](https://github.com/mrbig033/emacs) - i3 version 4.13 (2016-11-08) - [i3/config](https://github.com/mrbig033/dotfiles/blob/master/i3/config) - [dotfiles](https://github.com/mrbig033/dotfiles)...
When i copy and paste chinese chars, the result will be some unreadable codes. I fixed it by replacing (x-get-selection 'CLIPBOARD) with (x-get-selection 'CLIPBOARD 'UTF8_STRING) in clipmon--clipboard-contents. I don't know...
Just replaced with some function I found to be working well.
`clipmon--on-clipboard-change` calls `(kill-new s)` , which, if `interprogram-cut-function` is not nil, winds up placing the new clipboard text right back to the clipboard. Unfortunately, on Windows (at least) this can...
e.g. with autosave on and autoinserting text from the web, sometimes emacs asks what coding system to use, and the text gets inserted into the minibuffer instead of the buffer....
Copy some rich text in LibreOffice, wait for timer interval, paste it, and it's gone to plain text
Somehow reading the clipboard causes it to lose the rich formatting. This seems to be an odd behavior of `x-get-selection-value` (Windows) and `x-get-selection` (Linux) - will need to look into...