zsh-users
 help / color / mirror / code / Atom feed
From: Ray Andrews <rayandrews@eastlink.ca>
To: zsh-users@zsh.org
Subject: Re: command on switching terminals?
Date: Sun, 07 Jan 2018 08:45:12 -0800	[thread overview]
Message-ID: <1ea12fc3-c90f-103d-88ca-1c1bc80b503d@eastlink.ca> (raw)
In-Reply-To: <CAHYJk3Tif2j6oRNbT2xLmqprM1GyCC8QY07MniwALvBebCOuag@mail.gmail.com>

On 07/01/18 05:24 AM, Mikael Magnusson wrote:

I can't get it to work Mikael, here's my current hacked up test code, I 
source it in two different terminals and then change focus between them 
but nothing seems different.  I've tried a few variations on this with 
no luck:
------------------------------


#!/usr/bin/zsh

function _zle_line_init()
{
   [[ $TERM = xterm ]] && printf '\e[?1004h'
echo in-$TERM
}

function _zle_line_finish()
{
   [[ $TERM = xterm ]] && printf '\e[?1004l'
echo out-$TERM
}

zle -N zle-line-init _zle_line_init
zle -N zle-line-finish _zle_line_finish

# The test echo's in the functions show that the above two lines are in 
effect, I get:

#    $ in-xterm
#    out-xterm

# ... after every ENTER.

bindkey '^[[I' focus-in
bindkey '^[[O' focus-out

zle -N focus-in _focus_handler
zle -N focus-out _focus_handler

# But this seems not to be called:
function _focus_handler()
{
   if [[ $WIDGET = focus-in ]]; then
     zle -M "hey we got focus"
   fi
   if [[ $WIDGET = focus-out ]]; then
     zle -M "we lost focus"
   fi

echo _focus_handler where are you?
}

echo sourced ok


  reply	other threads:[~2018-01-07 16:45 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-01-06  5:33 Ray Andrews
2018-01-06 22:20 ` Mikael Magnusson
2018-01-06 22:45   ` Ray Andrews
2018-01-07 18:48     ` Grant Taylor
2018-01-07  0:51   ` Ray Andrews
2018-01-07 13:24     ` Mikael Magnusson
2018-01-07 16:45       ` Ray Andrews [this message]
2018-01-07 18:23         ` Mikael Magnusson
2018-01-07 18:39           ` Grant Taylor
2018-01-07 19:06           ` Ray Andrews
2018-01-07 20:27             ` Bart Schaefer
2018-01-07 20:43               ` Grant Taylor
2018-01-07 21:12               ` Ray Andrews
2018-01-07 21:36                 ` Grant Taylor
2018-01-08  1:43                 ` Ray Andrews
2018-01-07 20:29             ` Grant Taylor
2018-01-08  6:25   ` Mikael Magnusson
2018-01-08  6:28     ` Mikael Magnusson
2018-01-08 15:39       ` Ray Andrews
2018-01-08 16:08         ` Peter Stephenson
2018-01-08 16:38           ` Ray Andrews

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=1ea12fc3-c90f-103d-88ca-1c1bc80b503d@eastlink.ca \
    --to=rayandrews@eastlink.ca \
    --cc=zsh-users@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).