Warning, /sdk/kde-dev-scripts/kde-emacs/kde-emacs.el is written in an unsupported language. File is not indexed.

0001 ;; kde-emacs.el
0002 ;; Time-stamp: <2002-06-26 00:49:48 zack>
0003 ;;
0004 ;; Copyright (C)  2002  Zack Rusin <zackrat@att.net>
0005 ;;
0006 ;; This library is free software; you can redistribute it and/or
0007 ;; modify it under the terms of the GNU Lesser General Public
0008 ;; License as published by the Free Software Foundation; either
0009 ;; version 2.1 of the License, or (at your option) any later version.
0010 ;;
0011 ;; This library is distributed in the hope that it will be useful,
0012 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
0013 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
0014 ;; Lesser General Public License for more details.
0015 ;;
0016 ;; You should have received a copy of the GNU Lesser General Public
0017 ;; License along with this library; if not, write to the Free Software
0018 ;; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
0019 ;; 02110-1301  USA
0020 
0021 ;;; Installation:
0022 ;;
0023 ;; Put the following lines in your ".emacs":
0024 ;; (add-to-list 'load-path "~/path-to-kde-emacs")
0025 ;; (require 'kde-emacs)
0026 ;; 
0027 ;; I also strongly recommend to add the following two lines to 
0028 ;; .emacs file:
0029 ;; (setq kde-full-name "Your Name")
0030 ;; (setq kde-email "Your Email")
0031 ;;
0032 ;; You may want to byte-compile the package to speed it up
0033 ;; a bit. To do it in the *scratch* buffer type in the following
0034 ;; line:
0035 ;; (byte-recompile-directory "~/kde-emacs" t)
0036 ;; place the cursor after the closing paren and hit "Ctrl-x Ctrl-e",
0037 ;; that's it.
0038 ;;
0039 ;; All keybindings are in kde-emacs-bindings.el, look at/customize 
0040 ;; this file before byte-compiling the package!
0041 ;; If you want to see things you can customize type:
0042 ;; M-x customize-group
0043 ;; and type in "kde-devel" group.
0044 ;;
0045 ;; TODO: 
0046 ;; - in (if kde-emacs-type... change direct function calls
0047 ;;   to funcall's
0048 ;;
0049 
0050 (require 'cc-mode) ;; needed by kde-emacs-core's test on c-version
0051 
0052 (require 'kde-emacs-compat)
0053 (require 'kde-emacs-core)
0054 (require 'kde-emacs-general)
0055 (require 'klaralv)
0056 (require 'kde-emacs-utils)
0057 (require 'dirvars)
0058 (require 'git)
0059 
0060 ;; load this only if semantic package is present
0061 (when (featurep 'semantic)
0062   (require 'kde-emacs-semantic)
0063   (require 'kde-emacs-doc))
0064 
0065 (require 'kde-emacs-bindings)
0066 
0067 (provide 'kde-emacs)