Created
May 3, 2024 07:55
-
-
Save equwal/1de4816b70dfbed95ba0ae8b3e87bd48 to your computer and use it in GitHub Desktop.
Possibility to share and/or copy into the clipboard dictionary definitions. #9336; download and remove the .txt extension.
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
local Device = require("device") | |
local DictQuickLookup = require("ui/widget/dictquicklookup") | |
local changeDictionary_orig = DictQuickLookup.changeDictionary | |
DictQuickLookup.changeDictionary = function(self, index, skip_update) | |
changeDictionary_orig(self, index, skip_update) | |
local text = self.displayword .. "\n" .. self.definition | |
Device.input.setClipboardText(text) | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment