view ci/load-snd-dummy.sh @ 22934:3f04c2cf0ced v8.2.2014

patch 8.2.2014: using CTRL-O in a prompt buffer moves cursor to start Commit: https://github.com/vim/vim/commit/ee8b787bcd15f63a938243770065e704c9b5c85f Author: Bram Moolenaar <Bram@vim.org> Date: Thu Nov 19 18:46:25 2020 +0100 patch 8.2.2014: using CTRL-O in a prompt buffer moves cursor to start Problem: Using CTRL-O in a prompt buffer moves cursor to start of the line. Solution: Do not move the cursor when restarting edit. (closes https://github.com/vim/vim/issues/7330)
author Bram Moolenaar <Bram@vim.org>
date Thu, 19 Nov 2020 19:00:05 +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