From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 17473 invoked by alias); 27 Oct 2014 00:48:42 -0000 Mailing-List: contact zsh-workers-help@zsh.org; run by ezmlm Precedence: bulk X-No-Archive: yes List-Id: Zsh Workers List List-Post: List-Help: X-Seq: 33548 Received: (qmail 21700 invoked from network); 27 Oct 2014 00:48:30 -0000 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=ham version=3.3.2 Date: Mon, 27 Oct 2014 01:38:55 +0100 From: Vincent Lefevre To: zsh-workers@zsh.org Subject: Crash after interrupting tab-completion with Ctrl-\ Message-ID: <20141027003854.GA25689@xvii.vinc17.org> Mail-Followup-To: zsh-workers@zsh.org MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="GvXjxJ+pjyke8COw" Content-Disposition: inline Content-Transfer-Encoding: 8bit X-Mailer-Info: http://www.vinc17.net/mutt/ User-Agent: Mutt/1.5.23-6365-vl-r59709 (2014-09-07) --GvXjxJ+pjyke8COw Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit With zsh 5.0.7 (Debian package), I did a tab-completion, which generated endless output (I don't know why, and I don't remember the command). I typed Ctrl-\ to interrupt it (Ctrl-C had no effect), but zsh immediately crashed (the terminal disappeared as a consequence). Unfortunately it didn't leave a core file. I've attached the file containing my completion settings, which is sourced by my .zshrc file. -- Vincent Lefèvre - Web: 100% accessible validated (X)HTML - Blog: Work: CR INRIA - computer arithmetic / AriC project (LIP, ENS-Lyon) --GvXjxJ+pjyke8COw Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: attachment; filename=".zcomp" Content-Transfer-Encoding: 8bit ############################ # Vincent Lefèvre's .zcomp # ############################ # Completion for zsh zcomp_id='$Id: zcomp 73120 2014-09-16 11:39:50Z vinc17/ypig $' # The following lines were added by compinstall zstyle ':completion:*' auto-description 'specify: %d' zstyle ':completion:*' completer _complete zstyle ':completion:*' format 'Completing %d' zstyle ':completion:*' ignore-parents parent pwd zstyle ':completion:*' insert-tab false zstyle ':completion:*' list-colors ${(s.:.)LS_COLORS} zstyle ':completion:*' matcher-list '' 'm:{a-zA-Z}={A-Za-z}' 'r:|[._-]=* r:|=*' zstyle ':completion:*' max-errors 1 zstyle ':completion:*' menu select=long zstyle ':completion:*' preserve-prefix '//[^/]##/' zstyle :compinstall filename '.zcomp' autoload -U compinit compinit # End of lines added by compinstall # Suggestion from # From: Peter Stephenson # Date: Thu, 11 Mar 2004 12:28:17 +0000 # Subject: Re: cd completion and CDABLE_VARS # To: zsh-users@sunsite.dk # Message-ID: <14646.1079008097@csr.com> # http://www.zsh.org/mla/users/2004/msg00150.html # to disable named directories in the first completion choices. zstyle ':completion:*:complete:(cd|pushd):*' tag-order \ 'local-directories path-directories directory-stack' '*' # When starting to type a command, avoid the completion on directories # and executables in the cwd (except if there are no matches). However # if auto_cd is used with a cdpath, the behavior is a bit inconsistent. # This can be fixed by a modified _autocd function. zstyle ':completion:*:complete:-command-:*' tag-order 'commands builtins functions aliases suffix-aliases reserved-words jobs parameters' 'executables' '*' # Suggestion from # From: Bart Schaefer # Date: Wed, 21 Jul 2004 17:32:36 -0700 (PDT) # Subject: Re: TAB at the command line beginning # To: Zsh Mailinglist # Message-ID: # http://www.zsh.org/mla/users/2004/msg00743.html history-search-or-expand-or-complete() { if [[ -z "$BUFFER" && -z "$PREBUFFER" ]] then zle history-incremental-search-backward "$@" else zle expand-or-complete "$@" fi } zle -N history-search-or-expand-or-complete bindkey '\t' history-search-or-expand-or-complete # Suggestion from # From: Bart Schaefer # Date: Thu, 19 Aug 2004 10:16:10 -0700 (PDT) # Subject: Re: Tip of the day: previous command output # To: Zsh-users List # Message-ID: # http://www.zsh.org/mla/users/2004/msg00896.html # and following messages... keep() { kept=() kept=( $~* ) if [[ ! -t 0 ]] then while read line; do kept+=( $line ) done fi print -Rc - $kept } alias keep='noglob keep ' _insert_kept() { (( $#kept )) || return 1 local action zstyle -s :completion:$curcontext insert-kept action [[ -n $action ]] && compstate[insert]=$action compadd -a kept } zle -C insert-kept-result complete-word _generic zstyle ':completion:insert-kept-result:*' completer _insert_kept zstyle ':completion:*' insert-kept all bindkey '\e\t' insert-kept-result # Suggestion from the manual and # From: Bart Schaefer # Date: Sat, 19 Aug 2006 20:16:27 -0700 # Subject: Re: How to insert completions on command line # To: zsh-users@sunsite.dk # Message-id: <060819201627.ZM28979@torch.brasslantern.com> # http://www.zsh.org/mla/users/2006/msg00820.html zle -C all-matches complete-word _generic bindkey '^X\t' all-matches zstyle ':completion:all-matches:*' insert yes zstyle ':completion:all-matches::::' completer _all_matches _complete # See subthread # From: Peter Stephenson # Date: Mon, 18 Jun 2007 11:09:48 +0100 # Subject: Re: conditionally match part of file name to most recently # modified file # To: Zsh Users # Message-ID: <20070618110948.3d8d739f@news01.csr.com> # http://www.zsh.org/mla/users/2007/msg00483.html zle -C most-recent-file menu-complete _generic bindkey '^X.' most-recent-file zstyle ':completion:most-recent-file:*' match-original both zstyle ':completion:most-recent-file:*' file-sort modification zstyle ':completion:most-recent-file:*' file-patterns '*(-^/):all-files' zstyle ':completion:most-recent-file:*' hidden all zstyle ':completion:most-recent-file::::' completer _menu _files _match # The pager-wrapper function, defined in .zalias, is regarded as a precommand. compdef _precommand pager-wrapper # Completion for user commands compdef eclient=emacs compdef svnwrapper=svn # Note: interesting information can be obtained with _complete_help (^Xh). # local variables: # mode: sh # end: --GvXjxJ+pjyke8COw--