zsh-workers
 help / color / mirror / code / Atom feed
376e4414c37f0a2fedb09332f3e47bd9926b07b2 blob 507 bytes (raw)

 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
 
zle .push-line-or-edit
case $WIDGET in
  *-upward )
    if [[ -o autocd ]]; then
      BUFFER='..'
    else
      BUFFER='cd ..'
    fi
    ;;
  *-backward )
    if [[ -o pushdminus ]]; then
      BUFFER='pushd -1'
    else
      BUFFER='pushd +1'
    fi
    ;;
  *-forward )
    if [[ -o pushdminus ]]; then
      BUFFER='pushd +0'
    else
      BUFFER='pushd -0'
    fi
    ;;
  * )
    print -u2 'change-directory: widget name should end in -(up|back|for)ward'
    return 1
    ;;
esac
zle .accept-line
debug log:

solving 376e4414c ...
found 376e4414c in https://inbox.vuxu.org/zsh-workers/4D587C0C-EB5F-4A58-A0AE-D45E43F432CD@gmail.com/ ||
	https://inbox.vuxu.org/zsh-workers/95CDA630-4EE5-4003-8D9C-CCCB9A47F109@gmail.com/

applying [1/2] https://inbox.vuxu.org/zsh-workers/4D587C0C-EB5F-4A58-A0AE-D45E43F432CD@gmail.com/
diff --git a/Functions/Zle/change-directory b/Functions/Zle/change-directory
new file mode 100644
index 000000000..376e4414c

Checking patch Functions/Zle/change-directory...
Applied patch Functions/Zle/change-directory cleanly.

skipping https://inbox.vuxu.org/zsh-workers/95CDA630-4EE5-4003-8D9C-CCCB9A47F109@gmail.com/ for 376e4414c
index at:
100644 376e4414c37f0a2fedb09332f3e47bd9926b07b2	Functions/Zle/change-directory

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).