Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-09-18Cleanup: use static sets where possibleCampbell Barton
2013-06-27pep8 cleanupCampbell Barton
2013-05-01fix for exception in console auto-completing an object with __getitem__ but ↵Campbell Barton
no __len__ (BMEdge).
2013-03-28code cleanup: python/pep8 and double-promotion warnings.Campbell Barton
2013-03-11code cleanup: pep8 & minor changesCampbell Barton
2013-02-25patch [#34380] Fix Python console bug: "autocomplete" doesn't advance cursor ↵Campbell Barton
properly when completion includes UTF8 characters from Shinsuke Irie (irie)
2012-02-08Correct mathutils documentation, also correct some python spelling errors ↵Campbell Barton
and add makefile target `check_spelling`
2011-11-24pep8 edits and avoid naming conflicts with python builtinsCampbell Barton
2011-06-29incorrectly had CMake storing directory names as filepathsCampbell Barton
also correct compiler warning for collada and remove print from own last commit.
2011-06-29console autocomp import now excludes '_' prefixed variables and the results ↵Campbell Barton
are sorted.
2011-06-29bug [#27779] Python console completion brokenCampbell Barton
modified auto-completion, though this may need to become a preference. The problem is: - including _all_ text as a prefix can take a lot of space, and isnt too readable. - including only the previous word is error prone because detecting delimiters can fail when editing strings. so I've set it to only include the last part of the string but align to the cursor to make it more readable.
2011-06-11improved autocompleation when there is a common prefixCampbell Barton
2011-06-10added a check to console auto-compleation for pythons struct_seq type, so ↵Campbell Barton
bpy.app and sys.float_info autocompleate their attributes rather then bring treated as a typle.
2011-06-10fix [#27495] Incorrect result of image name autocompletionCampbell Barton
2011-02-08mailed Stani Michiels and he's ok to switch his console autocomplete to ↵Campbell Barton
GPLv2 or later.
2010-10-27bugfix [#24419] Console Autocomplete Error [Patch to fix attached]Campbell Barton
patch provided by Justin Dailey (dail) in report.
2010-10-18recent fix for relative imports broke autocomp.Campbell Barton
2010-07-14fix for autocomp., was raising an error when autocompleating functions ↵Campbell Barton
defined in the console because their file wasnt found (which is correct in this case).
2010-04-25py console autocomp. fixCampbell Barton
import missing_mod ...would raise an error.
2010-02-14autocompete was matching import_foo as import keyword.Campbell Barton
breaking autocomp. on import_scene_obj for eg.
2009-12-13add pep8 headers so these scripts spit out errors when running pep8.Campbell Barton
made some changes but mostly these scripts will give pep8 warnings.
2009-12-07- string copy without .py wasnt terminating the stringCampbell Barton
- console import autocomplete wasnt including modules defined in C like BGL, Mathutils
2009-11-07missed committing this file (from Stani's patch)Campbell Barton
2009-11-06patch from Stani, support for function arguments in autocompleteCampbell Barton
2009-10-30Patch from Stani for autocompleteCampbell Barton
adds ability to complete in these situations bpy -> bpy. bpy.data.objects -> bpy.data.objects["Mesh"] my autocomplete could only do bpy -> bpy.
2009-10-29replacement for my own autocomplete module by staniCampbell Barton
--- from his patch All the functionality is in the console folder: - intellisense.py: the central module which loads others on demand - complete_namespace: more or less a replacement for the old autocomplete.py - complete_import: module completion (I find this very handy, not just luxury) These complete_* modules work very simple and should also work outside blender. You give some input and it returns a list with possible completions. autocomplete.py is now deprecated.