blob: 1c8a4a3e4299be167ba5f206d8966d448c8608b3 [file] [log] [blame]
Bram Moolenaar4e4473c2020-08-28 22:24:57 +02001" Script to fill the window with emoji characters, one per line.
Bram Moolenaar98945562020-08-29 16:41:27 +02002" Source this script: :source %
Bram Moolenaar4e4473c2020-08-28 22:24:57 +02003
4if &modified
5 new
6else
7 enew
8endif
9
10" Use a compiled Vim9 function for speed
11def DoIt()
12 let lnum = 1
13 for c in range(0x100, 0x1ffff)
14 let cs = nr2char(c)
15 if charclass(cs) == 3
16 setline(lnum, '|' .. cs .. '| ' .. strwidth(cs))
17 lnum += 1
18 endif
19 endfor
20enddef
21
22call DoIt()
23set nomodified