1
0
mirror of https://codeberg.org/cage/tinmop/ synced 2025-06-05 01:09:17 +02:00

- added opening links command when focus is on the gemini window;

- removed spaces from beginning of "about" message.
This commit is contained in:
cage
2020-06-23 16:27:43 +02:00
parent d8ea5093f7
commit 8959776ae4
2 changed files with 15 additions and 13 deletions

View File

@@ -295,6 +295,8 @@
(define-key "ppage" #'message-scroll-previous-page *gemini-message-keymap*)
(define-key "l" #'open-message-link *gemini-message-keymap*)
;; tags keymap
(define-key "up" #'tag-go-up *tags-keymap*)

View File

@@ -19,24 +19,24 @@
(define-constant +help-about-message+
(format nil
"~a
Copyright (C) 2019 cage
Copyright (C) 2019 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 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.
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.
You should have received a copy of the GNU General Public License
along with this program.
For bug report please point your browser to:
For bug report please point your browser to:
~a"
~a"
+program-name+
+issue-tracker+)
:test #'string=)