name = "Complete word plugin" authors = [ "Lateef Alabi-Oki <*****@*****.**>", "Anton Bobrov <*****@*****.**>" ] version = 0.5 autoload = True class_name = "WordCompletionPlugin" short_description = "Complete word like eclipse Plugin" long_description = """Eclipse like (Alt+/) words completer""" from scribes.helpers import bootstrap WordCompletionPlugin = bootstrap('scribes.edit.complete_like_eclipse.Plugin')
name = "Python rope autocomplete" authors = ["Anton Bobrov <*****@*****.**>"] languages = ["python"] version = 0.1 autoload = True class_name = "PythonRopePlugin" short_description = "Autocompletes python code" long_description = """This plugin uses rope refactoring library to autocomlete python code""" from scribes.helpers import bootstrap PythonRopePlugin = bootstrap('scribes.python.rope.Plugin')
name = "Complete word plugin" authors = ["Lateef Alabi-Oki <*****@*****.**>", "Anton Bobrov <*****@*****.**>"] version = 0.5 autoload = True class_name = "WordCompletionPlugin" short_description = "Complete word like eclipse Plugin" long_description = """Eclipse like (Alt+/) words completer""" from scribes.helpers import bootstrap WordCompletionPlugin = bootstrap('scribes.edit.complete_like_eclipse.Plugin')
name = "Shortcut Manager plugin" authors = ["Anton Bobrov <*****@*****.**>"] version = 0.2 autoload = True class_name = "ShortcutManagerPlugin" short_description = "Manages shortcuts for scribes plugins" long_description = """Allows to override hardcoded plugin trigger accelerators""" from scribes.helpers import bootstrap ShortcutManagerPlugin = bootstrap('scribes.editor.shortcut_manager.Plugin')