소스 검색

Add narrowed indicator

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

+ 6
- 2
emacs.el 파일 보기

@@ -425,9 +425,13 @@ found, otherwise returns nil."
(column-number-mode 0)
(size-indication-mode 0)
(setq mode-line-position
'(:eval (format "L%%l/%d:C%%c"
'(:eval (format "L%%l/%d%s:C%%c"
(count-lines (point-max)
(point-min)))))
(point-min))
(if (buffer-narrowed-p)
"[N]"
"")
)))

;; http://www.geocities.jp/simizu_daisuke/bunkei-meadow.html#frame-title



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