view pixmaps/gen-inline-pixbufs.sh @ 31577:3c21865e8068 v9.0.1121

patch 9.0.1121: cursor positioning and display problems with 'smoothscroll' Commit: https://github.com/vim/vim/commit/db4d88c2adfe8f8122341ac9d6cae27ef78451c8 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Dec 31 15:13:22 2022 +0000 patch 9.0.1121: cursor positioning and display problems with 'smoothscroll' Problem: Cursor positioning and display problems with 'smoothscroll' and using "zt", "zb" or "zz". Solution: Adjust computations and conditions. (Yee Cheng Chin, closes #11764)
author Bram Moolenaar <Bram@vim.org>
date Sat, 31 Dec 2022 16:15:03 +0100
parents d4faa2c5211b
children
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