Skip to content
This repository was archived by the owner on Aug 31, 2021. It is now read-only.
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -105,13 +105,16 @@ command revDisplayAutoComplete pString
put empty into field "auto complete"
end if
cancel sColorizeAutocompleteMsg
get the long id of field "auto complete"
send "revSEColorizeField it" to stack "revSEUtilities" in 100 milliseconds
send "__ColorizeAutocomplete" to me in 100 milliseconds
put the result into sColorizeAutocompleteMsg
set the textColor of char 1 to -1 of field "auto complete" to "gray70"
unlock screen
end revDisplayAutoComplete

on __ColorizeAutocomplete
dispatch "revSEColorizeField" to stack "revSEUtilities" with the long id of field "auto complete"
set the textColor of char 1 to -1 of field "auto complete" to "gray70"
end __ColorizeAutocomplete

command revNextLine
lock messages
if field "auto complete" is empty then
Expand Down