Browse code

more fixes, more or less have this as i want

James Cox authored on 23/09/2009 at 00:18:15
Showing 4 changed files
... ...
@@ -1,5 +1,7 @@
1 1
 # Changing/making/removing directory
2 2
 setopt auto_name_dirs
3
+setopt auto_pushd
4
+setopt pushd_ignore_dups
3 5
 
4 6
 alias ..='cd ..'
5 7
 alias cd..='cd ..'
... ...
@@ -1,3 +1,4 @@
1
+## fixme, i duplicated this in xterms - oops
1 2
 function title {
2 3
   if [[ $TERM == "screen" ]]; then
3 4
     # Use these two for GNU Screen:
... ...
@@ -9,6 +9,11 @@ bindkey -s '\e.' "..\n"
9 9
 bindkey '^r' history-incremental-search-backward
10 10
 bindkey "^[[5~" up-line-or-history
11 11
 bindkey "^[[6~" down-line-or-history
12
+
13
+# make search up and down work, so partially type and hit up/down to find relevant stuff
14
+bindkey '^[[A' up-line-or-search
15
+bindkey '^[[B' down-line-or-search
16
+
12 17
 bindkey "^[[H" beginning-of-line
13 18
 bindkey "^[[1~" beginning-of-line
14 19
 bindkey "^[[F"  end-of-line
... ...
@@ -3,4 +3,7 @@ autoload -U url-quote-magic
3 3
 zle -N self-insert url-quote-magic
4 4
 
5 5
 ## file rename magick
6
-bindkey "^[m" copy-prev-shell-word
7 6
\ No newline at end of file
7
+bindkey "^[m" copy-prev-shell-word
8
+
9
+## jobs
10
+setopt long_list_jobs
8 11
\ No newline at end of file