ingame/slashcommands/slashcommandautocomplete.lua:33 -- ZO_PreHook("ZO_ChatTextEntry_NextCommand", function(...)
if not IsShiftKeyDown() and self:IsOpen() then
local index = self:GetAutoCompleteIndex()
if not index or index < self:GetNumAutoCompleteEntries() then
self:ChangeAutoCompleteIndex(1)
return true --Handled
end
end
end)