~vcs-imports/kupfer/master-new

« back to all changes in this revision

Viewing changes to kupfer/plugin/core/__init__.py

  • Committer: Ulrik Sverdrup
  • Date: 2010-02-11 13:54:11 UTC
  • Revision ID: git-v1:5e60835f430b0947689d0974c1f8a3bd73dd6dd1
Add SaveToFile action for ComposedLeaves to save commands to file

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
                globals()[attr] += object_names
38
38
                globals().update((sym, getattr(module, sym)) for sym in object_names)
39
39
 
40
 
from kupfer.plugin.core import contents, selection, text, internal
 
40
from kupfer.plugin.core import contents, selection, text, internal, commands
41
41
 
42
42
register_subplugin(contents)
43
43
register_subplugin(selection)
44
44
register_subplugin(text)
45
45
register_subplugin(internal)
 
46
register_subplugin(commands)
46
47
 
47
48
if _is_debug():
48
49
        from kupfer.plugin.core import debug