瀏覽代碼

Do not use with-eval-after-load for isearch

pull/15/head
10sr 7 年之前
父節點
當前提交
a25437946b
共有 1 個檔案被更改,包括 10 行新增10 行删除
  1. +10
    -10
      emacs.el

+ 10
- 10
emacs.el 查看文件

@@ -968,16 +968,16 @@ found, otherwise returns nil."
(define-key apropos-mode-map "n" 'next-line)
(define-key apropos-mode-map "p" 'previous-line))

(with-eval-after-load 'isearch
;; (define-key isearch-mode-map
;; (kbd "C-j") 'isearch-other-control-char)
;; (define-key isearch-mode-map
;; (kbd "C-k") 'isearch-other-control-char)
;; (define-key isearch-mode-map
;; (kbd "C-h") 'isearch-other-control-char)
(define-key isearch-mode-map (kbd "C-h") 'isearch-delete-char)
(define-key isearch-mode-map (kbd "M-r")
'isearch-query-replace-regexp))
;; `isearch' library does not call `provide' so cannot use with-eval-after-load
;; (define-key isearch-mode-map
;; (kbd "C-j") 'isearch-other-control-char)
;; (define-key isearch-mode-map
;; (kbd "C-k") 'isearch-other-control-char)
;; (define-key isearch-mode-map
;; (kbd "C-h") 'isearch-other-control-char)
(define-key isearch-mode-map (kbd "C-h") 'isearch-delete-char)
(define-key isearch-mode-map (kbd "M-r")
'isearch-query-replace-regexp)
;; do not cleanup isearch highlight: use `lazy-highlight-cleanup' to remove
(setq lazy-highlight-cleanup nil)
;; face for isearch highlighing


Loading…
取消
儲存