view ci/setup-xvfb.sh @ 29495:82b0aeaeaa3c v9.0.0089

patch 9.0.0089: fuzzy argument completion doesn't work for shell commands Commit: https://github.com/vim/vim/commit/7db3a8e3298bf7c7c3f74cc9c1add04f29e78d2d Author: Yegappan Lakshmanan <yegappan@yahoo.com> Date: Tue Jul 26 22:01:36 2022 +0100 patch 9.0.0089: fuzzy argument completion doesn't work for shell commands Problem: Fuzzy argument completion doesn't work for shell commands. Solution: Check for cmdidx not being CMD_bang. (Yegappan Lakshmanan, closes #10769)
author Bram Moolenaar <Bram@vim.org>
date Tue, 26 Jul 2022 23:15:03 +0200
parents 1984a3fcc953
children
line wrap: on
line source

#!/bin/bash
set -e

apt-get install -y xvfb

cat <<EOT >/etc/systemd/system/xvfb.service
[Unit]
Description=X Virtual Frame Buffer Service
After=network.target
[Service]
ExecStart=/usr/bin/Xvfb :99 -screen 0 1024x768x24
[Install]
WantedBy=multi-user.target
EOT

systemctl enable xvfb.service
systemctl start xvfb.service