view pixmaps/gen-inline-pixbufs.sh @ 9195:543f068f3706 v7.4.1881

commit https://github.com/vim/vim/commit/83e6d7ac6a1c2a0cb5ee6c8420a5dc792f1d5ffa Author: Bram Moolenaar <Bram@vim.org> Date: Thu Jun 2 22:08:05 2016 +0200 patch 7.4.1881 Problem: Appending to a long quickfix list is slow. Solution: Add qf_last.
author Christian Brabandt <cb@256bit.org>
date Thu, 02 Jun 2016 22:15:04 +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