aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTeddy Wing2018-04-11 21:40:52 +0200
committerTeddy Wing2018-04-11 21:40:52 +0200
commit72fd7893a91558d866867eefbb4cfa50213e4e8e (patch)
tree4026a4a7981c61ae1e7c88f76012a4e059c2e14b
parenta4f4e358879b3c3b95e6d82cf13fbc4288cf8e03 (diff)
downloadw3m-session-backup-72fd7893a91558d866867eefbb4cfa50213e4e8e.tar.bz2
Add package headers
Still need to figure out the values for the "Package-Requires", "Keywords", and "URL" sections.
-rw-r--r--w3m-session-backup.el36
1 files changed, 36 insertions, 0 deletions
diff --git a/w3m-session-backup.el b/w3m-session-backup.el
index 2a15479..b8d8f17 100644
--- a/w3m-session-backup.el
+++ b/w3m-session-backup.el
@@ -1,3 +1,37 @@
+;;; w3m-session-backup.el --- Backup the current W3m session to a file
+
+;; Copyright (c) 2018 Teddy Wing
+
+;; Author: Teddy Wing
+;; Version: 0.0.1
+;; Package-Requires: ((w3m "TODO"))
+;; Keywords:
+;; URL:
+
+;; 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:
+
+;; Saves a YAML file backup of the current W3m "Crash recovery session".
+;;
+;; Tabs are saved in the following format:
+;;
+;; - page_title: 'Title'
+;; url: 'http://example.com'
+
+;;; Code:
+
(defgroup w3m-session-backup nil
"TODO")
@@ -85,3 +119,5 @@
"TODO"
(interactive)
(w3m-session-backup--save-backup))
+
+;;; w3m-session-backup.el ends here