aboutsummaryrefslogtreecommitdiffhomepage
path: root/env.cpp
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-05-06 14:53:19 -0700
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-05-06 14:53:19 -0700
commit99b51ce6eadcc93027c6edf9a0def836ac050870 (patch)
treea5a985c2f9dc1ffd18cbdfc8266a0107d54d6699 /env.cpp
parente0baab2722b54e044baa13b4321e1e40a2e0be7b (diff)
Fix to better support CDPATH
Diffstat (limited to 'env.cpp')
-rw-r--r--env.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/env.cpp b/env.cpp
index 813df860..c6373cdf 100644
--- a/env.cpp
+++ b/env.cpp
@@ -1525,4 +1525,5 @@ const wchar_t *env_vars::get(const wchar_t *key) const
return (iter == vars.end() ? NULL : iter->second.c_str());
}
-const wchar_t * const env_vars::highlighting_keys[] = {L"PATH", L"HIGHLIGHT_DELAY", L"fish_function_path", NULL};
+const wchar_t * const env_vars::highlighting_keys[] = {L"PATH", L"CDPATH", L"HIGHLIGHT_DELAY", L"fish_function_path", NULL};
+