Mercurial > vim
view ci/setup-xvfb.sh @ 25874:054623fc54c5 v8.2.3471
patch 8.2.3471: crash when using CTRL-T after an empty search pattern
Commit: https://github.com/vim/vim/commit/d8d957de86f218de9124ca1209548f8c6f61b69b
Author: Bram Moolenaar <Bram@vim.org>
Date: Mon Oct 4 19:47:35 2021 +0100
patch 8.2.3471: crash when using CTRL-T after an empty search pattern
Problem: Crash when using CTRL-T after an empty search pattern.
Solution: Bail out when there is no previous search pattern. (closes https://github.com/vim/vim/issues/8953)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Mon, 04 Oct 2021 21:00:06 +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