view ci/load-snd-dummy.sh @ 29936:64b885d1acfc v9.0.0306

patch 9.0.0306: buffer write message is two lines in message popup window Commit: https://github.com/vim/vim/commit/f2fb54f641aa0e8a64356e4d0053f89b52c78229 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Aug 28 20:58:51 2022 +0100 patch 9.0.0306: buffer write message is two lines in message popup window Problem: Buffer write message is two lines in message popup window. Solution: Overwrite message if "msg_scroll" is off.
author Bram Moolenaar <Bram@vim.org>
date Sun, 28 Aug 2022 22:00:04 +0200
parents 3a7017ee1161
children
line wrap: on
line source

#!/bin/bash
set -e

if ! modprobe snd-dummy; then
    # snd-dummy is contained in linux-modules-extra (if exists)
    apt-get install -yq --no-install-suggests --no-install-recommends "linux-modules-extra-$(uname -r)"
    modprobe snd-dummy
fi