2023-03-06 18:38:46 +01:00
|
|
|
;; tinmop: an humble gemini and pleroma client
|
|
|
|
;; Copyright (C) 2020 cage
|
|
|
|
|
|
|
|
;; 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/>.
|
|
|
|
|
|
|
|
(in-package :client-os-utils)
|
|
|
|
|
|
|
|
(defun open-resource-with-external-program (main-window resource &key (open-for-edit nil))
|
|
|
|
(flet ((edit (file)
|
|
|
|
(croatoan:end-screen)
|
|
|
|
(os-utils:open-with-editor file)))
|
|
|
|
(let ((program (swconf:link-regex->program-to-use resource)))
|
|
|
|
(if program
|
|
|
|
(cond
|
|
|
|
((swconf:use-editor-as-external-program-p program)
|
|
|
|
(edit resource))
|
|
|
|
((swconf:use-tinmop-as-external-program-p program)
|
|
|
|
(if open-for-edit
|
|
|
|
(edit resource)
|
2023-03-14 18:50:47 +01:00
|
|
|
(client-main-window:open-local-path resource
|
|
|
|
main-window
|
|
|
|
:force-rendering t)))
|
2023-03-06 18:38:46 +01:00
|
|
|
(t
|
|
|
|
(os-utils:open-link-with-program program resource :wait open-for-edit)))
|
|
|
|
(if open-for-edit
|
|
|
|
(error (_ "No program defined in configuration file to edit this kind of files."))
|
|
|
|
(os-utils:xdg-open resource))))))
|