spacemacs/layers/+tools/xclipboard/packages.el
Alex Palaistras 70c1737c44 xclipboard: Fix keybindings for copy and page
This commit switches the keybindings for `xclipboard-copy` and `xclipboard-paste` to `SPC x y` and
`SPC x p` respectively, as it appears these were incorrectly assigned the other way around.
2018-05-11 10:25:52 -04:00

23 lines
607 B
EmacsLisp

;;; packages.el --- xclipboard layer packages file for Spacemacs.
;;
;; Copyright (c) 2012-2018 Sylvain Benner & Contributors
;;
;; Authors: Charles Weill <weill@google.com>
;; Google LLC.
;; URL: https://github.com/syl20bnr/spacemacs
;;
;; This file is not part of GNU Emacs.
;;
;;; License: GPLv3
(defconst xclipboard-packages
'(
(spacemacs-xclipboard :location local)
))
(defun xclipboard/init-spacemacs-xclipboard ()
(use-package spacemacs-xclipboard
:init (spacemacs/set-leader-keys
"xp" 'spacemacs/xclipboard-paste
"xy" 'spacemacs/xclipboard-copy)))