diff options
author | Christian Clason <c.clason@uni-graz.at> | 2024-10-05 13:11:16 +0200 |
---|---|---|
committer | Christian Clason <c.clason@uni-graz.at> | 2024-10-06 12:44:50 +0200 |
commit | 9788b81d7e53e7ad1ca9db249d86e43426ce56c2 (patch) | |
tree | ffd9b14b23f745d33cbbe8ca3254b1cce27217e9 /runtime/lua/vim/_meta/vimfn.lua | |
parent | 056009f74146b349c66790fbcba3130e85a6c6da (diff) | |
download | rneovim-9788b81d7e53e7ad1ca9db249d86e43426ce56c2.tar.gz rneovim-9788b81d7e53e7ad1ca9db249d86e43426ce56c2.tar.bz2 rneovim-9788b81d7e53e7ad1ca9db249d86e43426ce56c2.zip |
fix(runtime): fully port emoji_list to Lua
Problem: `runtime/tools/emoji_list.vim` is a Lua script masquerading as
Vimscript, which is unnecessary now that `:source` works for Lua files.
Solution: Remove Vimscript wrapper.
Diffstat (limited to 'runtime/lua/vim/_meta/vimfn.lua')
-rw-r--r-- | runtime/lua/vim/_meta/vimfn.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/lua/vim/_meta/vimfn.lua b/runtime/lua/vim/_meta/vimfn.lua index 649805f447..3eb2f2382d 100644 --- a/runtime/lua/vim/_meta/vimfn.lua +++ b/runtime/lua/vim/_meta/vimfn.lua @@ -7904,7 +7904,7 @@ function vim.fn.setbufvar(buf, varname, val) end --- To clear the overrides pass an empty {list}: >vim --- call setcellwidths([]) --- ---- <You can use the script $VIMRUNTIME/tools/emoji_list.vim to see +--- <You can use the script $VIMRUNTIME/tools/emoji_list.lua to see --- the effect for known emoji characters. Move the cursor --- through the text to check if the cell widths of your terminal --- match with what Vim knows about each emoji. If it doesn't |