zsh-workers
 help / color / mirror / code / Atom feed
From: Bart Schaefer <schaefer@brasslantern.com>
To: zsh-workers@zsh.org
Subject: Re: Behaviour of {beginning,end}-of-buffer-or-history
Date: Wed, 01 Jun 2011 19:22:06 -0700	[thread overview]
Message-ID: <110601192206.ZM14271@torch.brasslantern.com> (raw)
In-Reply-To: <is65ie$jtu$1@dough.gmane.org>

On Jun 1,  9:57pm, Bernhard Tittelbach wrote:
}
} I find it odd that {beginning,end}-of-buffer-or-history jumps to the 
} beginning/end of the history and not to the beginning/end of the line
} if called on a single-line buffer

The confusion is with the connotation of "beginning".

In the case of this particular widget, it means "anywhere on the first
line", which for a single-line buffer is ... anywhere.  This function
happens to be in the class of full-line-motions rather than character-
position-motions, despite that not being obvious from the name.

You'll note if you pay close attention that when it does beginning-of-
history, it often jumps to the end of the first history entry; if the
first history entry is a multi-line buffer it'll cycle between the
beginning and the end of that buffer.
 
} Jumping to the beginning/end of a line in a multi-line buffer
} is just an extra my function does, and not somewhere I think
} {beginning,end}-of-buffer-or-history
} should do (it's name does not imply any such functionality :)

If you care to travel back in time 20 years or so you can take that
up with Paul Falstad. :-)

Meanwhile ... I think there's an easier way than whatever that is
you're doing with buflines and cur_array ...

beginning-or-end-of-somewhere() {
 local hno=$HISTNO
 zle .${WIDGET:s/somewhere/line-hist/} "$@"
 if (( HISTNO != hno )); then
   zle .${WIDGET:s/somewhere/buffer-or-history/} "$@"
 fi
}
zle -N beginning-of-somewhere beginning-or-end-of-somewhere
zle -N end-of-somewhere beginning-or-end-of-somewhere


  reply	other threads:[~2011-06-02  2:22 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-06-01 19:57 Bernhard Tittelbach
2011-06-02  2:22 ` Bart Schaefer [this message]
2011-06-02  3:04   ` Bernhard Tittelbach
2011-06-02 14:25     ` Bart Schaefer
2011-06-02 16:02       ` Bernhard Tittelbach
  -- strict thread matches above, loose matches on Subject: below --
2011-06-01 19:43 Bernhard Tittelbach

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=110601192206.ZM14271@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).