1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
|
cdargs for Debian
-----------------
If you use bash
===============
simply copy the file examples/cdargs-bash.sh somewhere into your $PATH
and put a line like source cdargs-bash.sh in your ~/.bashrc.
If you use tcsh
===============
copy the file examples/cdargs-tcsh.csh to a place that you like and
source it from your ~/.cshrc (or ~/.tcsh ?). Any help appreciated in
making the tcsh expansion more powerful.
cdargs in emacs/xemacs
======================
Add the line
(load-library "cdargs")
to your .emacs-File.
WRAPPING
========
If you do not like the cursor wrapping around on the top and the
bottom of the list, start cdargs with the additional option --nowrap:
Example:
function cb () { cdargs --nowrap "$1" && cd `cat $HOME/.cdargsresult` ; }
This works for a bash-like shell, but I think this is rather easy to
port...
MORE HELP
=========
For more information try:
$ configure --help
$ cdargs --help
or press 'H' or '?' while running cdargs.
Additionally, cdargs comes with a manpage.
|