Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import sublime, sublime_plugin, time
- class InsertDatetimeCommand(sublime_plugin.TextCommand):
- def run(self, edit):
- sel = self.view.sel();
- for s in sel:
- self.view.replace(edit, s, time.strftime( '%d-%m-%Y %I:%M:%S %p By Virajsinh Nakum' ))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement