view ci/load-snd-dummy.sh @ 29483:2a327999c05c v9.0.0083

patch 9.0.0083: ModeChanged event not triggered when leaving cmdline window Commit: https://github.com/vim/vim/commit/c9e8fd6fc7d2027d0645b376d95a6ed51098036c Author: zeertzjq <zeertzjq@outlook.com> Date: Tue Jul 26 18:12:38 2022 +0100 patch 9.0.0083: ModeChanged event not triggered when leaving cmdline window Problem: ModeChanged event not triggered when leaving the cmdline window. Solution: Call may_trigger_modechanged(). (closes https://github.com/vim/vim/issues/10791)
author Bram Moolenaar <Bram@vim.org>
date Tue, 26 Jul 2022 19:15:03 +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