Created
January 19, 2019 16:26
-
-
Save AlexanderBaggett/10a9a2211e1e00d2e7bef746ecd5a589 to your computer and use it in GitHub Desktop.
Refresh Red Keyword Lists
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
foreach line split help-string action! newline [append actions: [] first split trim/lines line " "] | |
write/lines %actions.txt sort actions | |
foreach line split help-string datatype! newline [append datatypes: [] first split trim/lines line " "] | |
write/lines %datatypes.txt sort datatypes | |
foreach line split help-string event! newline [append events: [] first split trim/lines line " "] | |
write/lines %events.txt sort events | |
foreach line split help-string native! newline [append natives: [] first split trim/lines line " "] | |
write/lines %natives.txt sort natives | |
foreach line split help-string function! newline [append functions: [] first split trim/lines line " "] | |
write/lines %functions.txt sort functions |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment