Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save equwal/1de4816b70dfbed95ba0ae8b3e87bd48 to your computer and use it in GitHub Desktop.
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.
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