view ci/load-snd-dummy.sh @ 23859:12b446696927 v8.2.2471

patch 8.2.2471: popup_setoptions() does not set textprop in other tab Commit: https://github.com/vim/vim/commit/efa1923565f0669d5bc09714b22a3b50cde03785 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Feb 6 14:59:27 2021 +0100 patch 8.2.2471: popup_setoptions() does not set textprop in other tab Problem: Popup_setoptions() does not set textprop in other tab. Solution: use win_valid_any_tab(). (closes https://github.com/vim/vim/issues/7788)
author Bram Moolenaar <Bram@vim.org>
date Sat, 06 Feb 2021 15:00:04 +0100
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