view pixmaps/gen-inline-pixbufs.sh @ 14625:cd3f0987c0bc v8.1.0326

patch 8.1.0326: screen dump does not consider NUL and space equal commit https://github.com/vim/vim/commit/98fc8d7b6c8cc3c2f55e8d08617ecc27a3624899 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Aug 24 21:30:28 2018 +0200 patch 8.1.0326: screen dump does not consider NUL and space equal Problem: Screen dump does not consider NUL and space equal. Solution: Use temp variables instead of character from cell.
author Christian Brabandt <cb@256bit.org>
date Fri, 24 Aug 2018 21:45:05 +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