Mercurial > vim
view runtime/tools/emoji_list.vim @ 30215:40491de2f0a6 v9.0.0443
patch 9.0.0443: blueprint files are not recognized
Commit: https://github.com/vim/vim/commit/cce82a55b8105560a2ef724999c856966337b48e
Author: Gabriele Musco <gabmus@disroot.org>
Date: Sun Sep 11 13:37:37 2022 +0100
patch 9.0.0443: blueprint files are not recognized
Problem: Blueprint files are not recognized.
Solution: Add a pattern for blueprint files. (Gabriele Musco, closes https://github.com/vim/vim/issues/11107)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sun, 11 Sep 2022 14:45:05 +0200 |
parents | 99ef85ff1af4 |
children |
line wrap: on
line source
" Script to fill the window with emoji characters, one per line. " Source this script: :source % if &modified new else enew endif " Use a compiled Vim9 function for speed def DoIt() var lnum = 1 for c in range(0x100, 0x1ffff) var cs = nr2char(c) if charclass(cs) == 3 setline(lnum, '|' .. cs .. '| ' .. strwidth(cs)) lnum += 1 endif endfor enddef call DoIt() set nomodified