pimd icon indicating copy to clipboard operation
pimd copied to clipboard

Refactor command interface

Open hagenburger opened this issue 6 years ago • 1 comments

The current way to add a new command (Processing Instruction) <?my-command?> is:

config.commands['my-command'] = () => 'return value'

This should be refactored into:

config.commands.add('my-command', () => 'return value')

hagenburger avatar Aug 22 '18 07:08 hagenburger