mirror of
https://github.com/correl/doom-modeline.git
synced 2024-11-23 19:19:50 +00:00
Fix: error while truncate the file without directory information.
Happen while editing org src code blocks. (:file test.py) Debugger entered--Lisp error: (wrong-type-argument stringp nil) file-exists-p(nil) f-exists\?(nil) f-same\?(nil "") shrink-path-file-mixed("" nil "test.py") doom-modeline--buffer-file-name("test.py" "/Users/xxx/org/test.py" shrink) doom-modeline-buffer-file-name()
This commit is contained in:
parent
fd5c985dc0
commit
2812b1990f
1 changed files with 1 additions and 1 deletions
|
@ -556,7 +556,7 @@ Example:
|
|||
~/Projects/FOSS/emacs/lisp/comint.el => ~/P/F/emacs/lisp/comint.el"
|
||||
(let* ((project-root (or (doom-modeline-project-root) ""))
|
||||
(file-name-split (shrink-path-file-mixed project-root
|
||||
(file-name-directory file-path)
|
||||
(or (file-name-directory file-path) "./")
|
||||
file-path))
|
||||
(active (doom-modeline--active)))
|
||||
(if (null file-name-split)
|
||||
|
|
Loading…
Reference in a new issue