Skip to content

Commit

Permalink
fix for tmux-plugins#33
Browse files Browse the repository at this point in the history
  • Loading branch information
mmjo committed Mar 23, 2024
1 parent b1330e0 commit 9452f97
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion autoload/tmux_focus_events.vim
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,10 @@ function! tmux_focus_events#focus_gained()
augroup focus_gained_checktime
au!
" perform checktime ASAP when outside cmd line
au * * call <SID>delayed_checktime()
"This is buggy:
"au * * call <SID>delayed_checktime()
"Replacement:
au CmdLineLeave * call <SID>delayed_checktime()
augroup END
else
silent checktime
Expand Down

0 comments on commit 9452f97

Please sign in to comment.