소스 검색

Add term-cursor

master
10sr 5 년 전
부모
커밋
40fb50abaf
로그인 계정: 10sr GPG 키 ID: 7BEC428194130EB2
1개의 변경된 파일14개의 추가작업 그리고 0개의 파일을 삭제
  1. +14
    -0
      emacs.el

+ 14
- 0
emacs.el 파일 보기

@@ -348,6 +348,20 @@ found, otherwise returns nil."
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; editor

;; Used from term-cursor
(defun my-cursor-type-change (&rest args)
"ARGS are discarded."
(if buffer-read-only
(setq cursor-type 'bar)
(setq cursor-type 'box)))
(add-hook 'switch-buffer-functionsp
'my-cursor-type-change)
(add-hook 'read-only-mode-hook
'my-cursor-type-change)
(when (fboundp 'global-term-cursor-mode)
(global-term-cursor-mode 1))
;; (term-cursor--eval)

(setq kill-whole-line t)
(setq scroll-conservatively 35
scroll-margin 2)


불러오는 중...
취소
저장