Blender Git Loki
Git Commits -> Revision bdc030c
Revision bdc030c by Ian Thompson (master) June 24, 2008, 15:25 (GMT) |
Text plugin basis with plugin for suggestions/completions. The suggest plugin works for imported global variables, methods, modules and module members. For example typing: import Blender from Blender import * | <- cursor here suggests globals Blender.Draw.gl| <- cursor here suggests all Draw members starting gl Currently suggestions are listed in the console when the space is redrawn but will be presented as a menu-style list soon. Also to add are shortcut/activation keys to allow plugins to respond to certain key strokes. |
Commit Details:
Full Hash: bdc030c664640db727ea21a1e854bb62032bf705
SVN Revision: 15343
Parent Commit: 05ce388
Lines Changed: +561, -1
3 Added Paths:
/release/scripts/textplugin_suggest.py (+234, -0) (View)
/source/blender/blenkernel/BKE_suggestions.h (+77, -0) (View)
/source/blender/blenkernel/intern/suggestions.c (+125, -0) (View)
/source/blender/blenkernel/BKE_suggestions.h (+77, -0) (View)
/source/blender/blenkernel/intern/suggestions.c (+125, -0) (View)
8 Modified Paths:
/source/blender/python/api2_2x/doc/Text.py (+11, -1) (Diff)
/source/blender/python/api2_2x/Text.c (+57, -0) (Diff)
/source/blender/python/BPY_interface.c (+1, -0) (Diff)
/source/blender/python/BPY_menus.c (+5, -0) (Diff)
/source/blender/python/BPY_menus.h (+1, -0) (Diff)
/source/blender/src/drawtext.c (+15, -0) (Diff)
/source/blender/src/header_text.c (+32, -0) (Diff)
/source/blender/src/usiblender.c (+3, -0) (Diff)
/source/blender/python/api2_2x/Text.c (+57, -0) (Diff)
/source/blender/python/BPY_interface.c (+1, -0) (Diff)
/source/blender/python/BPY_menus.c (+5, -0) (Diff)
/source/blender/python/BPY_menus.h (+1, -0) (Diff)
/source/blender/src/drawtext.c (+15, -0) (Diff)
/source/blender/src/header_text.c (+32, -0) (Diff)
/source/blender/src/usiblender.c (+3, -0) (Diff)