Mercurial > vim
view src/testdir/test_short_sleep.py @ 29505:33983b2f030f v9.0.0094
patch 9.0.0094: cursor restored unexpected with nested autocommand
Commit: https://github.com/vim/vim/commit/3d6ee8bda0550a01346f5992bbce09c0eb6d7569
Author: Bram Moolenaar <Bram@vim.org>
Date: Wed Jul 27 15:23:35 2022 +0100
patch 9.0.0094: cursor restored unexpected with nested autocommand
Problem: Cursor restored unexpected with nested autocommand.
Solution: Do not restore the cursor when it was moved intentionally.
(closes #10780)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Wed, 27 Jul 2022 16:30:03 +0200 |
parents | 191ccece2f5d |
children |
line wrap: on
line source
#!/usr/bin/python # # Program that sleeps for 100 msec # # This requires Python 2.6 or later. import time if __name__ == "__main__": time.sleep(0.1) # sleep 100 msec