view ci/load-snd-dummy.sh @ 24749:fb44ba319785 v8.2.2913

patch 8.2.2913: MS-Windows conpty supports using mouse events Commit: https://github.com/vim/vim/commit/6ef5ab59043681a51e8ca2ab0a1e4ff8f0f4bb47 Author: Wez Furlong <wez@wezfurlong.org> Date: Sun May 30 19:29:41 2021 +0200 patch 8.2.2913: MS-Windows conpty supports using mouse events Problem: MS-Windows conpty supports using mouse events. Solution: When enabling the mouse enable mouse input and disable quick edit mode. (Wez Furlong, closes #8280)
author Bram Moolenaar <Bram@vim.org>
date Sun, 30 May 2021 19:30: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