Mercurial > vim
annotate ci/load-snd-dummy.sh @ 31678:9e1062b4aa94 v9.0.1171
patch 9.0.1171: screen is not redrawn after using setcellwidths()
Commit: https://github.com/vim/vim/commit/2bc849ff811059d25310399f982c6706faa7eb35
Author: Yasuhiro Matsumoto <mattn.jp@gmail.com>
Date: Tue Jan 10 16:03:08 2023 +0000
patch 9.0.1171: screen is not redrawn after using setcellwidths()
Problem: Screen is not redrawn after using setcellwidths().
Solution: Redraw the screen when the cell widths have changed. (Yasuhiro
Matsumoto, closes #11800)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Tue, 10 Jan 2023 17:15:02 +0100 |
parents | 3a7017ee1161 |
children |
rev | line source |
---|---|
19722
c94c103e7cb4
patch 8.2.0417: Travis CI config can be improved
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1 #!/bin/bash |
c94c103e7cb4
patch 8.2.0417: Travis CI config can be improved
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2 set -e |
c94c103e7cb4
patch 8.2.0417: Travis CI config can be improved
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
3 |
c94c103e7cb4
patch 8.2.0417: Travis CI config can be improved
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
4 if ! modprobe snd-dummy; then |
c94c103e7cb4
patch 8.2.0417: Travis CI config can be improved
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
5 # snd-dummy is contained in linux-modules-extra (if exists) |
21875
3a7017ee1161
patch 8.2.1487: Travis: installing snd-dummy is not always useful
Bram Moolenaar <Bram@vim.org>
parents:
19722
diff
changeset
|
6 apt-get install -yq --no-install-suggests --no-install-recommends "linux-modules-extra-$(uname -r)" |
19722
c94c103e7cb4
patch 8.2.0417: Travis CI config can be improved
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
7 modprobe snd-dummy |
c94c103e7cb4
patch 8.2.0417: Travis CI config can be improved
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
8 fi |