view ci/setup-xvfb.sh @ 28369:38332c6da029 v8.2.4710

patch 8.2.4710: smart indenting does not work after completion Commit: https://github.com/vim/vim/commit/ac72c21da696cf6c31630a9e5ff4c0d3e2049c11 Author: Christian Brabandt <cb@256bit.org> Date: Thu Apr 7 21:00:53 2022 +0100 patch 8.2.4710: smart indenting does not work after completion Problem: Smart indenting does not work after completion. Solution: Set "can_si". (Christian Brabandt, closes https://github.com/vim/vim/issues/10113, closes https://github.com/vim/vim/issues/558)
author Bram Moolenaar <Bram@vim.org>
date Thu, 07 Apr 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