view ci/setup-xvfb.sh @ 30491:729e2305f4b2 v9.0.0581

patch 9.0.0581: adding a character for incsearch fails at end of line Commit: https://github.com/vim/vim/commit/d4566c14e71c55dcef05fb34ea94eba835831527 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Sep 24 21:06:39 2022 +0100 patch 9.0.0581: adding a character for incsearch fails at end of line Problem: Adding a character for incsearch fails at end of line. Solution: Only check cursor line number.
author Bram Moolenaar <Bram@vim.org>
date Sat, 24 Sep 2022 22: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