瀏覽代碼

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



Loading…
取消
儲存