Mercurial > vim
view src/testdir/test_channel_6.py @ 31857:a9d97517ac27 v9.0.1261
patch 9.0.1261: Elsa files are not recognized
Commit: https://github.com/vim/vim/commit/2a99fe6c41efcd5d1eb47823e7e73cf391e230ba
Author: Amaan Qureshi <amaanq12@gmail.com>
Date: Sun Jan 29 17:50:14 2023 +0000
patch 9.0.1261: Elsa files are not recognized
Problem: Elsa files are not recognized.
Solution: Add a pattern for Elsa files. (Amaan Qureshi, closes https://github.com/vim/vim/issues/11908)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sun, 29 Jan 2023 19:00:02 +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)