zsh-workers
 help / color / mirror / code / Atom feed
From: Bart Schaefer <schaefer@brasslantern.com>
To: zsh-workers@zsh.org
Subject: Re: Bug: history-search-backward ignores search text after first space character?
Date: Wed, 22 Jul 2015 13:56:25 -0700	[thread overview]
Message-ID: <150722135625.ZM32504@torch.brasslantern.com> (raw)
In-Reply-To: <CA+328FZqtxLSKc0jBTOPgDyqiNPsuL2p6wLGPL7YjwYj+Y+Aug@mail.gmail.com>

On Jul 22, 12:56pm, Sridhar Sarnobat wrote:
}
} # try to autocomplete based on the history. I want "git checkout -" to
} be filled in, but instead "git status" is filled in.
} git c<history-search-backward>
} git status
} 
} Notice the space and c that I typed in are ignored in the autocomplete.

Read the doc:

history-search-backward (ESC-P ESC-p) (unbound) (unbound)
     Search backward in the history for a line beginning with the first
     word in the buffer.

Note that only the first word is used for that widget.

} I assume this is some shortcoming of the zsh completion system. Is this
} true? Or am I misunderstanding the functionality?

History search has nothing to do with completion (though completion might
search the history), so yes, you're misunderstanding.

What you want in the example shown is history-beginning-search-backward, 
which is not bound by default.  Add

zle -A history-beginning-search-backward history-search-backward
zle -A history-beginning-search-forward history-search-forward

to your .zshrc (there are other ways to accomplish the same thing if
you still want to be able to use the original history-search-backward
and -forward widgets).


      reply	other threads:[~2015-07-22 20:56 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-07-22 19:56 Sridhar Sarnobat
2015-07-22 20:56 ` Bart Schaefer [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=150722135625.ZM32504@torch.brasslantern.com \
    --to=schaefer@brasslantern.com \
    --cc=zsh-workers@zsh.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).