view pixmaps/gen-inline-pixbufs.sh @ 22526:6325ef9143bc

patch 8.2.1811: mapping Ctrl-key does not work for '{', '}' and '|' Commit: https://github.com/vim/vim/commit/9a033d7b18651acbb7eda4b7f39a27c01748fb70 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Oct 7 17:29:48 2020 +0200 patch 8.2.1811: mapping Ctrl-key does not work for '{', '}' and '|' Problem: Mapping Ctrl-key does not work for '{', '}' and '|'. Solution: Remove the shift modifier. (closes https://github.com/vim/vim/issues/6457)
author Bram Moolenaar <Bram@vim.org>
date Wed, 07 Oct 2020 17:30:03 +0200
parents 3fc0f57ecb91
children d4faa2c5211b
line wrap: on
line source

#! /bin/sh

prefix=stock_
list=

for file in "$@"
do
    name=`echo "$file" | sed 's|-|_|g; s|^.*/||; s|\..*$||'`
    list="$list $prefix$name $file"
done

gdk-pixbuf-csource --raw --static --build-list $list