view ci/load-snd-dummy.sh @ 24729:03492b62d79a v8.2.2903

patch 8.2.2903: cursor position wrong on wrapped line with 'signcolumn' Commit: https://github.com/vim/vim/commit/a06e345af5b8261c072c95b0446e67cfda439848 Author: Bram Moolenaar <Bram@vim.org> Date: Sat May 29 17:56:37 2021 +0200 patch 8.2.2903: cursor position wrong on wrapped line with 'signcolumn' Problem: Cursor position wrong on wrapped line with 'signcolumn'. Solution: Don't add space for showbreak twice. (Christian Brabandt, closes #8262)
author Bram Moolenaar <Bram@vim.org>
date Sat, 29 May 2021 18:00: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