This file contains hidden or 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
// an example to create a new mapping `ctrl-y` | |
api.mapkey('<ctrl-y>', 'Show me the money', function() { | |
Front.showPopup('a well-known phrase uttered by characters in the 1996 film Jerry Maguire (Escape to close).'); | |
}); | |
// an example to replace `T` with `gt`, click `Default mappings` to see how `T` works. | |
api.map('gt', 'T'); | |
api.map('>>', 'gx$'); | |
// an example to remove mapkey `Ctrl-i` |
This file contains hidden or 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
### HIGHLANDER PRIEST | |
# 职业:牧师 | |
# 模式:狂野模式 | |
# | |
# 1x (0) 亡者复生 | |
# 1x (1) 倦怠光波 | |
# 1x (1) 感知宝珠 | |
# 1x (1) 甩笔侏儒 | |
# 1x (1) 疯狂药水 | |
# 1x (2) 了不起的杰弗里斯 |
This file contains hidden or 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
package droid.hooker.experiment.language.kotlin | |
import kotlinx.coroutines.* | |
import kotlinx.coroutines.flow.Flow | |
import kotlinx.coroutines.flow.channelFlow | |
import kotlinx.coroutines.flow.collect | |
import kotlin.random.Random | |
class AvatarLoaderMock { |