[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[nongnu] elpa/devil 92b95191ca 25/49: Remove demo files
|
From: |
ELPA Syncer |
|
Subject: |
[nongnu] elpa/devil 92b95191ca 25/49: Remove demo files |
|
Date: |
Mon, 15 May 2023 12:59:32 -0400 (EDT) |
branch: elpa/devil
commit 92b95191ca5c11335c3254d4bcac2a361c0ca531
Author: Susam Pal <susam@susam.net>
Commit: Susam Pal <susam@susam.net>
Remove demo files
---
meta/Makefile | 9 ---------
meta/README.md | 34 ----------------------------------
meta/example.el | 22 ----------------------
meta/example.md | 27 ---------------------------
meta/global.el | 4 ----
meta/god.el | 4 ----
meta/left.el | 6 ------
meta/local.el | 4 ----
meta/smiley.el | 46 ----------------------------------------------
9 files changed, 156 deletions(-)
diff --git a/meta/Makefile b/meta/Makefile
deleted file mode 100644
index bd1bb42357..0000000000
--- a/meta/Makefile
+++ /dev/null
@@ -1,9 +0,0 @@
-checks:
- cd ~/git/melpa/ && make clean && rm -rf packages/devil* working/devil/
- cd ~/git/melpa/ && make recipes/devil
- -cd ~/git/melpa/ && STABLE=t make recipes/devil
- cd ~/git/melpa/ && make sandbox INSTALL=devil
- cd ~/git/melpa/ && ls -l packages/ packages-stable/ sandbox/elpa/
-
-smiley:
- emacs -q -l smiley.el example.md
diff --git a/meta/README.md b/meta/README.md
deleted file mode 100644
index e57f4347c9..0000000000
--- a/meta/README.md
+++ /dev/null
@@ -1,34 +0,0 @@
-Developer Notes
-===============
-
-Release Checklist
------------------
-
-Perform the following tasks for every release:
-
- - Update version in devil.el.
- - Update copyright notice in devil.el.
- - Update copyright notice in LICENSE.md.
- - Update CHANGES.md.
- - Run checks:
-
- ```sh
- make checks
- ```
-
- - Commit changes:
-
- ```sh
- git add -p
- git status
- ```
-
- - Tag the release:
-
- ```
- VERSION=
-
- git commit -em "Set version to $VERSION"
- git tag $VERSION -m "Devil $VERSION"
- git push origin main $VERSION
- ```
diff --git a/meta/example.el b/meta/example.el
deleted file mode 100644
index 7ba5f4c9ac..0000000000
--- a/meta/example.el
+++ /dev/null
@@ -1,22 +0,0 @@
-;;; Emacs Lisp Examples.
-
-(defun hello-world ()
- "Show 'hello, world' message."
- (interactive)
- (message "hello, world"))
-
-(defun show-current-time ()
- "Show current time."
- (interactive)
- (message (current-time-string)))
-
-(defun fibonacci (n)
- "Compute nth Fibonacci number."
- (cond ((= n 0) 0)
- ((= n 1) 1)
- (t (+ (fibonacci (- n 1))
- (fibonacci (- n 2))))))
-
-(global-set-key (kbd "C-c h") 'hello-world)
-(global-set-key (kbd "C-c t") 'show-current-time)
-(global-set-key (kbd "C-c d") 'delete-trailing-whitespace)
diff --git a/meta/example.md b/meta/example.md
deleted file mode 100644
index 374b092f11..0000000000
--- a/meta/example.md
+++ /dev/null
@@ -1,27 +0,0 @@
-Emacs Lisp
-==========
-
-Emacs Lisp is a dialect of the Lisp programming language. Most
-of the GNU Emacs text editor is written in this programming
-language. The Emacs Lisp manual describes the usefulness of
-Emacs Lisp as follows:
-
-> You can write new code in Emacs Lisp and install it as an
-> extension to the editor. However, Emacs Lisp is more than a
-> mere extension language; it is a full computer programming
-> language in its own right. You can use it as you would any
-> other programming language.
-
-Here is a simple Emacs Lisp example that prints the string
-"hello, world" in the echo area:
-
-```
-(message "hello, world")
-```
-
-Emacs Lisp supports both imperative and functional programming
-paradigms. The extension `.el` is used by convention to name
-files that contain Emacs Lisp programs.
-
-The GNU Emacs Lisp manual is available in various formats at
-<https://www.gnu.org/software/emacs/manual/elisp.html>.
diff --git a/meta/global.el b/meta/global.el
deleted file mode 100644
index e93114c099..0000000000
--- a/meta/global.el
+++ /dev/null
@@ -1,4 +0,0 @@
-(add-to-list 'load-path "~/git/devil/")
-(require 'devil)
-(global-devil-mode)
-(global-set-key (kbd "C-,") 'global-devil-mode)
diff --git a/meta/god.el b/meta/god.el
deleted file mode 100644
index 75d2e21271..0000000000
--- a/meta/god.el
+++ /dev/null
@@ -1,4 +0,0 @@
-(add-to-list 'load-path "~/git/god-mode/")
-(require 'god-mode)
-(god-mode)
-(global-set-key (kbd "<escape>") 'god-mode-all)
diff --git a/meta/left.el b/meta/left.el
deleted file mode 100644
index ef519930f2..0000000000
--- a/meta/left.el
+++ /dev/null
@@ -1,6 +0,0 @@
-(add-to-list 'load-path "~/git/devil/")
-(setq devil-logging t)
-(setq devil-key "<left>")
-(require 'devil)
-(global-devil-mode)
-(global-set-key (kbd "C-<left>") 'global-devil-mode)
diff --git a/meta/local.el b/meta/local.el
deleted file mode 100644
index aeaf9ca915..0000000000
--- a/meta/local.el
+++ /dev/null
@@ -1,4 +0,0 @@
-(add-to-list 'load-path "~/git/devil/")
-(require 'devil)
-(add-hook 'text-mode-hook 'devil-mode)
-(global-set-key (kbd "C-,") 'devil-mode)
diff --git a/meta/smiley.el b/meta/smiley.el
deleted file mode 100644
index c3c83b92ef..0000000000
--- a/meta/smiley.el
+++ /dev/null
@@ -1,46 +0,0 @@
-;; Customize user interface.
-(when (display-graphic-p)
- (tool-bar-mode 0)
- (scroll-bar-mode 0))
-(setq inhibit-startup-screen t)
-(column-number-mode)
-
-;; Do not display file icon or name on title bar.
-(add-to-list 'default-frame-alist '(ns-appearance . dark))
-(setq ns-use-proxy-icon nil)
-(setq frame-title-format nil)
-
-;; Dark theme colours.
-(load-theme 'wombat)
-(set-face-attribute 'menu nil :background "#444" :foreground "#eee")
-(set-face-attribute 'default nil :background "#111" :foreground "#eee")
-(set-face-attribute 'region nil :background "#354" :foreground "#eee")
-(set-face-attribute 'isearch nil :background "#ff0" :foreground "#000")
-(set-face-attribute 'lazy-highlight nil :background "#990" :foreground "#000")
-(set-face-attribute 'mode-line nil :background "#444" :foreground "#ccc")
-(set-face-attribute 'mode-line-inactive nil :background "#222" :foreground
"#999")
-(set-face-background 'cursor "#c96")
-(set-face-foreground 'font-lock-comment-face "#fc0")
-
-;; Dark theme attributes.
-(set-face-attribute 'menu nil :inverse-video nil)
-(set-face-attribute 'mode-line nil :box '(:style released-button))
-(set-face-attribute 'mode-line-inactive nil :box '(:style pressed-button))
-
-;; Packages.
-(require 'package)
-(add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/") t)
-(package-initialize)
-(unless package-archive-contents
- (package-refresh-contents))
-(dolist (package '(markdown-mode paredit rainbow-delimiters))
- (unless (package-installed-p package)
- (package-install package)))
-
-;; Devil
-(add-to-list 'load-path "~/git/devil/")
-(require 'devil)
-(setq devil-lighter " \U0001F608")
-(setq devil-prompt "\U0001F608 %t")
-(global-devil-mode)
-(global-set-key (kbd "C-,") 'global-devil-mode)
- [nongnu] elpa/devil c60437c11b 39/49: Support making all key sequences repeatable, (continued)
- [nongnu] elpa/devil c60437c11b 39/49: Support making all key sequences repeatable, ELPA Syncer, 2023/05/15
- [nongnu] elpa/devil f6ddd7cac1 38/49: Fix undefined error for RET, <f10>, etc., ELPA Syncer, 2023/05/15
- [nongnu] elpa/devil 72ce585e59 42/49: Document devil-all-keys-repeatable in the manual, ELPA Syncer, 2023/05/15
- [nongnu] elpa/devil 305a41dc55 45/49: Add MELPA badges, ELPA Syncer, 2023/05/15
- [nongnu] elpa/devil 2fe542cbc6 46/49: Mention Emacs at the beginning of documentation, ELPA Syncer, 2023/05/15
- [nongnu] elpa/devil b84cd61eec 40/49: Format .org files consistently, ELPA Syncer, 2023/05/15
- [nongnu] elpa/devil a42a778ec3 43/49: Add devil-all-keys-repeatable to changelog, ELPA Syncer, 2023/05/15
- [nongnu] elpa/devil 1ddc4dc2e3 44/49: Fix key translation for key vector as Devil key, ELPA Syncer, 2023/05/15
- [nongnu] elpa/devil fbc422c666 20/49: Add steps to install Devil from MELPA, ELPA Syncer, 2023/05/15
- [nongnu] elpa/devil 2090eb34f4 21/49: Move configuration examples to subsections, ELPA Syncer, 2023/05/15
- [nongnu] elpa/devil 92b95191ca 25/49: Remove demo files,
ELPA Syncer <=
- [nongnu] elpa/devil ef7a7d4c74 29/49: Add 'devil' customisation group, ELPA Syncer, 2023/05/15
- [nongnu] elpa/devil b3ad615c76 30/49: Fix spacing in documentation strings, ELPA Syncer, 2023/05/15
- [nongnu] elpa/devil 1b929b815b 31/49: * devil.el (devil--saved-keys): Assign nil by default, ELPA Syncer, 2023/05/15
- [nongnu] elpa/devil eb38e94a8a 47/49: Do not duplicate support section in the manual, ELPA Syncer, 2023/05/15
- [nongnu] elpa/devil d63216f1cd 48/49: Link to HTML manual, ELPA Syncer, 2023/05/15