annotate pixmaps/gen-inline-pixbufs.sh @ 26598:b3ac5a4dc158 v8.2.3828

patch 8.2.3828: when opening a terminal from a timer first typed char is lost Commit: https://github.com/vim/vim/commit/8103527da7f12ff21c2566222748518ee093432c Author: Bram Moolenaar <Bram@vim.org> Date: Thu Dec 16 18:02:07 2021 +0000 patch 8.2.3828: when opening a terminal from a timer first typed char is lost Problem: when opening a terminal from a timer the first typed character is lost. (Virginia Senioria) Solution: When opening a terminal while waiting for a character put K_IGNORE in the input buffer.
author Bram Moolenaar <Bram@vim.org>
date Thu, 16 Dec 2021 19:15:04 +0100
parents d4faa2c5211b
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1 #! /bin/sh
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3 prefix=stock_
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4 list=
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5
25700
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 7
diff changeset
6 for file in "$@"; do
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 7
diff changeset
7 name=$(echo "$file" | sed 's|-|_|g; s|^.*/||; s|\..*$||')
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8 list="$list $prefix$name $file"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
9 done
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
10
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
11 gdk-pixbuf-csource --raw --static --build-list $list