Fix vim not handling wide emoji

This commit is contained in:
Adam Millerchip 2020-12-06 16:18:42 +09:00
parent 648f5f6a54
commit a5e688abf5
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ $ elixir day6part1.exs
Thoughts:
So far I've read the whole file into memory. I initially did that here to get the answer
quickly to preserve my Leaderboard position 🌟, butthen refactored to use File.stream!
quickly to preserve my leaderboard position 🌟, but then refactored to use File.stream!
to parse the file line-by-line.
This meant using Stream.chunk_by to sort into groups.