From 39e9974e7103d2de05f03b0a3e20526b14bfd953 Mon Sep 17 00:00:00 2001 From: axel Date: Mon, 5 Jun 2006 20:04:34 +1000 Subject: [PATCH] Fix some typos and bad wording in hte faq darcs-hash:20060605100434-ac50b-539b8cebf367ad1c1e05b78fb412389c9f78fc4b.gz --- doc_src/doc.hdr | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/doc_src/doc.hdr b/doc_src/doc.hdr index bdaebb48a..434f3e140 100644 --- a/doc_src/doc.hdr +++ b/doc_src/doc.hdr @@ -2445,10 +2445,10 @@ DAMAGES.
\section faq-cwd-symlink Why does cd, pwd and other fish commands always resolve symlinked directories to their canonical path? + -For example if I have the directory ~/images which is a symlink to -~/Documents,/Images if I write 'cd doc', my prompt will say -~/D/Images, not ~/images. +For example if ~/images is a symlink to ~/Documents/Images, if I write +'cd images', my prompt will say ~/D/Images, not ~/images. Because it is impossible to consistently keep symlinked directories @@ -2479,9 +2479,9 @@ silently fails in shells that don't resolve symlinked paths. Because they are completions. In fish, if you specify a relative directory to the cd command, i.e. any path that does not start with -'.' or '/', the environment variable CD_PATH will be examined, and any +either './' or '/', the environment variable CDPATH will be examined, and any directories in this path is used as a base direcotry. To disable this -feature, use the command set CD_PATH .. +feature, write set CDPATH . on the commandline.