view pixmaps/gen-inline-pixbufs.sh @ 24868:e8451dc0d643 v8.2.2972

patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails Commit: https://github.com/vim/vim/commit/7b4f76c0300f0bd9bf54ca1968fe9ae5e4dbdef4 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Jun 10 21:07:48 2021 +0200 patch 8.2.2972: "%bd" tries to delete popup window buffers, which fails Problem: "%bd" tries to delete popup window buffers, which fails. (Ralf Schandl) Solution: Do not try to delete a popup window buffer. (closes #8349)
author Bram Moolenaar <Bram@vim.org>
date Thu, 10 Jun 2021 21:15: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