Add the zop-to-char package

This commit is contained in:
Bozhidar Batsov 2015-02-07 12:46:05 +02:00
parent 9dd4b916bc
commit 8fd5b0db53
2 changed files with 5 additions and 4 deletions

View file

@ -76,9 +76,9 @@
(define-key 'help-command (kbd "C-i") 'info-display-manual) (define-key 'help-command (kbd "C-i") 'info-display-manual)
;; a complement to the zap-to-char command, that doesn't eat up the target character ;; replace zap-to-char functionaity with the more powerful zop-to-char
(autoload 'zap-up-to-char "misc" "Kill up to, but not including ARGth occurrence of CHAR.") (global-set-key (kbd "M-z") 'zop-to-char)
(global-set-key (kbd "M-Z") 'zap-up-to-char) (global-set-key (kbd "M-Z") 'zop-up-to-char)
;; kill lines backward ;; kill lines backward
(global-set-key (kbd "C-<backspace>") (lambda () (global-set-key (kbd "C-<backspace>") (lambda ()

View file

@ -71,7 +71,8 @@
smartrep smartrep
undo-tree undo-tree
volatile-highlights volatile-highlights
zenburn-theme) zenburn-theme
zop-to-char)
"A list of packages to ensure are installed at launch.") "A list of packages to ensure are installed at launch.")
(defun prelude-packages-installed-p () (defun prelude-packages-installed-p ()