# -*- coding: utf-8 -*- ''' :Title Insert Time :Author Flying Meat :Website http://flyingmeat.com/ :Planguage Python :Requires VoodooPad 4+ :Description This plugin inserts the current time into the page. EOD ''' import time VPScriptMenuTitle = "Insert Time" import AppKit def main(windowController, *args, **kwargs): document = windowController.document() textView = windowController.textView() timeAsString = time.strftime("%I:%M %p") if textView.shouldChangeTextInRange_replacementString_(textView.selectedRange(), None): textView.insertText_(timeAsString) textView.didChangeText()