summaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authoralgernon <algernon>2001-10-05 16:13:04 +0000
committeralgernon <algernon>2001-10-05 16:13:04 +0000
commit5f1fa0a2de87406d701f5b015044a5d76a1f4c43 (patch)
treea331fa625fc0b7b18d1ace3d37632a7479a795c8 /contrib
parentec05e9d4a92fd0ef59d13b875ca61213c0f49906 (diff)
downloadratpoison-5f1fa0a2de87406d701f5b015044a5d76a1f4c43.zip
superceded by ratpoison.el
Diffstat (limited to 'contrib')
-rw-r--r--contrib/ratpoisonrc-mode.el79
1 files changed, 0 insertions, 79 deletions
diff --git a/contrib/ratpoisonrc-mode.el b/contrib/ratpoisonrc-mode.el
deleted file mode 100644
index 0c82f7d..0000000
--- a/contrib/ratpoisonrc-mode.el
+++ /dev/null
@@ -1,79 +0,0 @@
-;;; ratpoisonrc-mode.el --- .ratpoisonrc syntax-highlighting mode for Emacs
-
-;; Author: Gergely Nagy <algernon@debian.org>
-;; Maintainer: Gergely Nagy
-;; Version: 0.1
-;; Keywords: faces, ratpoison, X
-;; CVS Id: $Id: ratpoisonrc-mode.el,v 1.1 2001/09/16 09:39:57 sabetts Exp $
-;; Last updated: <2001/09/06 17:57:24 algernon>
-
-;; This file is NOT part of GNU Emacs.
-
-;; 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 2 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, write to the Free
-;; Software Foundation, Inc., 59 Temple Place, Suite 330, Boston,
-;; MA 02111-1307 USA
-
-;;; Commentary:
-;;
-;; This file provides a major mode for editing .ratpoisonrc files. At
-;; them moment it only provides syntax-highlighting.
-
-;;; Todo:
-;; - auto-completion of commands
-;; - more intelligent highlighting (eg: highlight arguments)
-;; - syntax checking
-
-(define-generic-mode 'ratpoisonrc-mode
- (list ?#)
- (list
- "abort"
- "next"
- "prev"
- "exec"
- "select"
- "colon"
- "kill"
- "delete"
- "other"
- "windows"
- "title"
- "clock"
- "maximize"
- "newwm"
- "generate"
- "version"
- "bind"
- "unbind"
- "source"
- "escape"
- "echo"
- "split"
- "hsplit"
- "vsplit"
- "focus"
- "only"
- "remove"
- "banish"
- "curframe"
- "help"
- "quit"
- "number"
- "rudeness"
- )
- nil
- (list "\\.ratpoisonrc\\'")
- nil
- "Generic mode for ratpoison configuration files.")
-
-(provide 'ratpoison-mode)