diff options
author | Marc Cornellà <marc.cornella@live.com> | 2015-11-30 18:11:11 +0100 |
---|---|---|
committer | Marc Cornellà <marc.cornella@live.com> | 2015-11-30 18:11:11 +0100 |
commit | a19ec1040e20e76baf9ff4f6024d511edda3293e (patch) | |
tree | eacb20c4410ae3b84a15fd71a615bb2499070437 /plugins/zsh-navigation-tools/.config | |
parent | afd28bf1fc22f53c4a1af3f5836ca428affb34b3 (diff) | |
parent | 39e4dfb6a60cba39a47df68764075d841829be49 (diff) | |
download | zsh-a19ec1040e20e76baf9ff4f6024d511edda3293e.tar.gz zsh-a19ec1040e20e76baf9ff4f6024d511edda3293e.tar.bz2 zsh-a19ec1040e20e76baf9ff4f6024d511edda3293e.zip |
Merge pull request #4649 from psprint/master
znt: n-history supports multi-line cmds and starts with current buffer
Fixes #4648
Diffstat (limited to 'plugins/zsh-navigation-tools/.config')
-rw-r--r-- | plugins/zsh-navigation-tools/.config/znt/n-cd.conf | 1 | ||||
-rw-r--r-- | plugins/zsh-navigation-tools/.config/znt/n-history.conf | 5 |
2 files changed, 6 insertions, 0 deletions
diff --git a/plugins/zsh-navigation-tools/.config/znt/n-cd.conf b/plugins/zsh-navigation-tools/.config/znt/n-cd.conf index 5fcfe64fa..f8c49bfac 100644 --- a/plugins/zsh-navigation-tools/.config/znt/n-cd.conf +++ b/plugins/zsh-navigation-tools/.config/znt/n-cd.conf @@ -1,6 +1,7 @@ # Hotlist local hotlist hotlist=( + ~/.config/znt /usr/share/zsh/site-functions /usr/share/zsh /usr/local/share/zsh/site-functions diff --git a/plugins/zsh-navigation-tools/.config/znt/n-history.conf b/plugins/zsh-navigation-tools/.config/znt/n-history.conf index f798f7121..5d4bad822 100644 --- a/plugins/zsh-navigation-tools/.config/znt/n-history.conf +++ b/plugins/zsh-navigation-tools/.config/znt/n-history.conf @@ -3,3 +3,8 @@ # On Linux virtual terminal this will be enforced to reverse (because of poor # underline support on that terminal) local active_text=underline + +# Highlight a few keywords +local NLIST_COLORING_PATTERN="(while|for |sudo|make|(#s)git|vim(#e)|vim |emacs(#e)|emacs )" +local NLIST_COLORING_COLOR=$'\x1b[00;33m' +local NLIST_COLORING_MATCH_MULTIPLE=1 |