Add utf8 support on doc lower and upper commands
This commit is contained in:
parent
0665da49ae
commit
1d1b3e0a09
|
@ -402,11 +402,11 @@ local commands = {
|
||||||
end,
|
end,
|
||||||
|
|
||||||
["doc:upper-case"] = function()
|
["doc:upper-case"] = function()
|
||||||
doc():replace(string.upper)
|
doc():replace(string.uupper)
|
||||||
end,
|
end,
|
||||||
|
|
||||||
["doc:lower-case"] = function()
|
["doc:lower-case"] = function()
|
||||||
doc():replace(string.lower)
|
doc():replace(string.ulower)
|
||||||
end,
|
end,
|
||||||
|
|
||||||
["doc:go-to-line"] = function()
|
["doc:go-to-line"] = function()
|
||||||
|
|
Loading…
Reference in New Issue