summaryrefslogtreecommitdiffstats
path: root/ubuntu/precise/tdesdk/debian/tdesdk-scripts-trinity.README.Debian
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2014-04-17 13:57:20 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2014-04-17 13:57:20 +0900
commit2d59086b104acd7b4711fd067c9bb4480158e6ab (patch)
tree7d3d9aff90930e65a491c055510aba94debc6da9 /ubuntu/precise/tdesdk/debian/tdesdk-scripts-trinity.README.Debian
parent55b519366b1dcd7ab5b2f1f720d275b33fc4bd49 (diff)
downloadtde-packaging-2d59086b104acd7b4711fd067c9bb4480158e6ab.tar.gz
tde-packaging-2d59086b104acd7b4711fd067c9bb4480158e6ab.zip
Removed Ubuntu/precise folder
Diffstat (limited to 'ubuntu/precise/tdesdk/debian/tdesdk-scripts-trinity.README.Debian')
-rw-r--r--ubuntu/precise/tdesdk/debian/tdesdk-scripts-trinity.README.Debian65
1 files changed, 0 insertions, 65 deletions
diff --git a/ubuntu/precise/tdesdk/debian/tdesdk-scripts-trinity.README.Debian b/ubuntu/precise/tdesdk/debian/tdesdk-scripts-trinity.README.Debian
deleted file mode 100644
index ec8ff7295..000000000
--- a/ubuntu/precise/tdesdk/debian/tdesdk-scripts-trinity.README.Debian
+++ /dev/null
@@ -1,65 +0,0 @@
-tdesdk-scripts for Debian
--------------------------
-
-Debugger macros:
-
- Some handy gdb macros (such as for printing QStrings from gdb)
- have been placed in /usr/share/tdesdk-scripts/kde-devel-gdb.
-
- To use them, add this line to your ~/.gdbinit :
-
- source /usr/share/tdesdk-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/tdesdk-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/tdesdk-scripts")
- (require 'kde-emacs)
-
- (setq kde-full-name "Your Name")
- (setq kde-email "Your Email")
-
- See the file /usr/share/emacs/site-lisp/tdesdk-scripts/kde-emacs.el for
- further information regarding emacs.
-
-Shell completion controls:
-
- Completion controls are provided in /usr/share/tdesdk-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/tdesdk-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/tdesdk-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 <bab@debian.org>, Fri, 15 Oct 2004 09:55:26 +1000