Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion doc/panvimdoc.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*panvimdoc.txt* For NVIM v0.8.0 Last change: 2025 August 08
*panvimdoc.txt* For NVIM v0.8.0 Last change: 2025 September 25

==============================================================================
Table of Contents *panvimdoc-table-of-contents*
Expand Down
3 changes: 2 additions & 1 deletion scripts/remove-emojis.lua
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ local function cleanup(elem)
if elem.text ~= nil then
elem.text = demojify(elem.text)
if #elem.text ~= 0 then
if elem.text:starts_with(":") and elem.text:ends_with(":") then
-- remove github emoji
if elem.text:starts_with(":") and elem.text:ends_with(":") and #elem.text > 2 then
prevEmoji = true
return {}
else
Expand Down