view src/testdir/test_channel_6.py @ 31990:27ab829631df v9.0.1327

patch 9.0.1327: cursor in wrong position below line with virtual text below Commit: https://github.com/vim/vim/commit/ea62cee85e9e77ec86edd9843926dadb69978753 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Feb 19 18:36:41 2023 +0000 patch 9.0.1327: cursor in wrong position below line with virtual text below Problem: Cursor in wrong position below line with virtual text below ending in multi-byte character. Solution: When checking for last character take care of multi-byte character.
author Bram Moolenaar <Bram@vim.org>
date Sun, 19 Feb 2023 19:45:03 +0100
parents e373843e2980
children
line wrap: on
line source

#!/usr/bin/env python
#
# Server that will accept connections from a Vim channel.
# Used by test_channel.vim.
#
# This requires Python 2.6 or later.

from test_channel import main, ThreadedTCPServer
import socket

class ThreadedTCP6Server(ThreadedTCPServer):
    address_family = socket.AF_INET6

if __name__ == "__main__":
    main("::", 0, ThreadedTCP6Server)