-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathchatu-common.el
82 lines (67 loc) · 2.84 KB
/
chatu-common.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
;;; chatu-common.el --- Common functions for chatu-mode -*- lexical-binding: t -*-
;; Copyright (c) 2024 Kimi Ma <kimi.im@outlook.com>
;; Author: Kimi Ma <kimi.im@outlook.com>
;; URL: https://github.com/kimim/chatu
;; Keywords: multimedia convenience
;; This file is NOT part of GNU Emacs.
;;; License:
;; This program is free software: you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
;;; Commentary:
;; `chatu-common-with-extension' to add file extension.
;; `chatu-common-open-external' to open input file in system.
;;; Code:
(defun chatu-common-with-extension (path file-ext)
"Add FILE-EXT to PATH if PATH has no extension."
(if (file-name-extension path)
path
(file-name-with-extension path file-ext)))
(defun chatu-common-open-other-window (path empty)
"Open chatu PATH in other window.
Fill PATH with EMPTY string if nonexist."
(let ((parent (file-name-parent-directory path)))
(when (not (file-exists-p parent))
(make-directory parent t))
(when (not (file-exists-p path))
(write-region empty nil path))
(find-file-other-window path)))
(defun chatu-common-open-external (executable path empty)
"Open chatu PATH with EXECUTABLE program.
Fill PATH with EMPTY string, if nonexist."
(let ((parent (file-name-parent-directory path)))
(when (not (file-exists-p parent))
(make-directory parent t))
(when (not (file-exists-p path))
(write-region empty nil path))
(cond
;; ensure that draw.io.exe is in execute PATH
((string-equal system-type "windows-nt")
(if (fboundp 'w32-shell-execute)
(w32-shell-execute "open" path)))
;; TODO: need some test for other systems
((string-equal system-type "darwin")
(start-process "" nil "open" "-a" executable path))
((string-equal system-type "gnu/linux")
;; special handling for WSL emacs invoke Windows draw.io.exe
(start-process
""
nil executable
(if (string= "exe"
(file-name-extension executable))
(string-trim
(shell-command-to-string
(format "wslpath -aw '%s'" (file-truename path))))
path)))
((string-equal system-type "cygwin")
(start-process "" nil "xdg-open"
executable path)))))
(provide 'chatu-common)
;;; chatu-common.el ends here