Mercurial > vim
view src/testdir/test_short_sleep.py @ 30363:48c73657679c v9.0.0517
patch 9.0.0517: when at the command line :redrawstatus does not work well
Commit: https://github.com/vim/vim/commit/320d910064320f894a09ffdd1cd800ff5371e97f
Author: zeertzjq <zeertzjq@outlook.com>
Date: Tue Sep 20 17:12:13 2022 +0100
patch 9.0.0517: when at the command line :redrawstatus does not work well
Problem: When at the command line :redrawstatus does not work well.
Solution: Only update the statuslines instead of the screen. (closes https://github.com/vim/vim/issues/11180)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Tue, 20 Sep 2022 18:15: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