Skip to content

Commit 7f1ea6a

Browse files
committed
Update L2U table, add emojis
Emoji support is far from perfect
1 parent 6a4c2b7 commit 7f1ea6a

File tree

5 files changed

+4078
-2455
lines changed

5 files changed

+4078
-2455
lines changed

autoload/generate_latex_symbols_table.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ open("$filename.vim","w") do f
1010
println(f, "function! $filename#$funcname()\n",
1111
" return {\n",
1212
" \\ ",
13-
join([string("'", latex, "': '", unicode, "'") for (latex,unicode) in sort!(collect(Base.REPLCompletions.latex_symbols), by=x->x[2])],
13+
join([string("'", latex, "': '", unicode, "'") for (latex,unicode) in sort!(vcat(collect(Base.REPLCompletions.latex_symbols),collect(Base.REPLCompletions.emoji_symbols)), by=x->x[2])],
1414
",\n \\ "),
1515
"}")
1616
println(f, "endfunction")

0 commit comments

Comments
 (0)