Advertisement
Guest User

Untitled

a guest
May 5th, 2016
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. * Pasting from Emacs
  2. ** Emacs selection to Chromium
  3. - middle click
  4. ** Emacs kill to Chromium
  5. - shift+insert
  6. - C-v
  7. ** Emacs selection to Xterm
  8. - unknown (shift+insert, and middle click do not work)
  9. ** Emacs kill to Xterm
  10. - shift+insert
  11. - middle click
  12. * Emacs configuration
  13. #+begin_src lisp
  14. (setq x-select-enable-clipboard t
  15. x-select-enable-primary t
  16. save-interprogram-paste-before-kill t
  17. mouse-yank-at-point t)
  18. #+end_src
  19. * Xterm configuration
  20. /some entries may not be related to selection/pasting/
  21. #+begin_src conf
  22. x-terminal-emulator*highlightSelection: true
  23. x-terminal-emulator*eightBitInput: false
  24. x-terminal-emulator*cutToBeginningOfLine: false
  25. x-terminal-emulator*cursesemul: false
  26. x-terminal-emulator*ptyInitialErase: false
  27. x-terminal-emulator*selectToClipboard: true
  28. #+end_src
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement