summaryrefslogtreecommitdiffstats
path: root/ubuntu/lucid_automake/kdesdk/debian/kdesdk-scripts-kde3.README.Debian
diff options
context:
space:
mode:
authorFrançois Andriot <[email protected]>2014-03-16 13:01:25 +0100
committerFrançois Andriot <[email protected]>2014-03-16 13:01:25 +0100
commitac9528cdc30a02a5de9bee61d984ce5e887738db (patch)
treeda0d46e2887ebd9ff3322d7b5c751d29b2086085 /ubuntu/lucid_automake/kdesdk/debian/kdesdk-scripts-kde3.README.Debian
parent86edbad7c86151df1ff3ba015b466a634920e3e7 (diff)
parentf923c3ffdf627da3a7637db245b24b9f29f7c6a1 (diff)
downloadtde-packaging-ac9528cdc30a02a5de9bee61d984ce5e887738db.tar.gz
tde-packaging-ac9528cdc30a02a5de9bee61d984ce5e887738db.zip
Merge branch 'master' of http://scm.trinitydesktop.org/scm/git/tde-packaging
Diffstat (limited to 'ubuntu/lucid_automake/kdesdk/debian/kdesdk-scripts-kde3.README.Debian')
-rw-r--r--ubuntu/lucid_automake/kdesdk/debian/kdesdk-scripts-kde3.README.Debian65
1 files changed, 0 insertions, 65 deletions
diff --git a/ubuntu/lucid_automake/kdesdk/debian/kdesdk-scripts-kde3.README.Debian b/ubuntu/lucid_automake/kdesdk/debian/kdesdk-scripts-kde3.README.Debian
deleted file mode 100644
index 7d0a6714d..000000000
--- a/ubuntu/lucid_automake/kdesdk/debian/kdesdk-scripts-kde3.README.Debian
+++ /dev/null
@@ -1,65 +0,0 @@
-kdesdk-scripts for Debian
--------------------------
-
-Debugger macros:
-
- Some handy gdb macros (such as for printing QStrings from gdb)
- have been placed in /usr/share/kdesdk-scripts/kde-devel-gdb.
-
- To use them, add this line to your ~/.gdbinit :
-
- source /usr/share/kdesdk-scripts/kde-devel-gdb
-
-Editor helper files:
-
- Both vim and emacs helper files are provided containing many functions
- and keybindings for developing KDE/Qt/C++ applications.
-
- To use the vim helper file, add this line to your ~/.vimrc :
-
- source /usr/share/kdesdk-scripts/kde-devel-vim.vim
-
- To use the emacs helper files, add these lines to your ~/.emacs (with
- your real name and email address substituted as appropriate):
-
- (add-to-list 'load-path "/usr/share/emacs/site-lisp/kdesdk-scripts")
- (require 'kde-emacs)
-
- (setq kde-full-name "Your Name")
- (setq kde-email "Your Email")
-
- See the file /usr/share/emacs/site-lisp/kdesdk-scripts/kde-emacs.el for
- further information regarding emacs.
-
-Shell completion controls:
-
- Completion controls are provided in /usr/share/kdesdk-scripts/completions/
- for a variety of shells.
-
- To enable completion controls for zsh, you need to add the following
- lines to your ~/.zshrc :
-
- # Add the KDE completion controls to the zsh function path.
- set -A fpath $fpath /usr/share/kdesdk-scripts/completions/zsh
-
- # Initialise the zsh completion system.
- autoload -U compinit
- compinit
-
- To enable completion controls for bash, you must source each of the bash
- completion files from your ~/.bashrc . A sample ~/.bashrc line is:
-
- . /usr/share/kdesdk-scripts/completions/bash/dcop
-
-Valgrind error suppressions:
-
- A valgrind suppression file is included for ignoring things we don't
- care about when valgrinding KDE applications.
-
- The suppression file is provided as /usr/lib/valgrind/kde.supp .
-
- To use these suppressions, run valgrind with the option:
-
- --suppressions=/usr/lib/valgrind/kde.supp
-
- -- Ben Burton <[email protected]>, Fri, 15 Oct 2004 09:55:26 +1000