2023-08-16 00:20:26 +10:00
|
|
|
# SPDX-FileCopyrightText: 2009-2023 Blender Authors
|
2023-06-15 13:09:04 +10:00
|
|
|
#
|
2022-02-11 09:07:11 +11:00
|
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
2009-10-29 20:55:45 +00:00
|
|
|
|
2023-09-05 10:49:20 +10:00
|
|
|
# Copyright (c) 2009 https://www.stani.be
|
2022-02-09 16:00:03 +11:00
|
|
|
|
2009-10-29 20:55:45 +00:00
|
|
|
"""This module provides intellisense features such as:
|
|
|
|
|
|
|
|
* autocompletion
|
2009-11-06 08:53:07 +00:00
|
|
|
* calltips
|
2009-10-29 20:55:45 +00:00
|
|
|
|
|
|
|
It unifies all completion plugins and only loads them on demand.
|
|
|
|
"""
|
2009-11-06 08:53:07 +00:00
|
|
|
|
2009-10-29 20:55:45 +00:00
|
|
|
# TODO: file complete if startswith quotes
|
|
|
|
import os
|
|
|
|
import re
|
|
|
|
|
|
|
|
# regular expressions to find out which completer we need
|
|
|
|
|
|
|
|
# line which starts with an import statement
|
2019-10-22 17:38:55 +11:00
|
|
|
RE_MODULE = re.compile(r'''^import(\s|$)|from.+''')
|
2009-10-29 20:55:45 +00:00
|
|
|
|
2009-10-30 09:34:57 +00:00
|
|
|
# The following regular expression means an 'unquoted' word
|
2009-10-29 20:55:45 +00:00
|
|
|
RE_UNQUOTED_WORD = re.compile(
|
2009-10-30 09:34:57 +00:00
|
|
|
# don't start with a quote
|
2019-10-22 17:38:55 +11:00
|
|
|
r'''(?:^|[^"'a-zA-Z0-9_])'''
|
2009-10-30 09:34:57 +00:00
|
|
|
# start with a \w = [a-zA-Z0-9_]
|
2019-10-22 17:38:55 +11:00
|
|
|
r'''((?:\w+'''
|
2009-10-30 09:34:57 +00:00
|
|
|
# allow also dots and closed bracket pairs []
|
2019-10-22 17:38:55 +11:00
|
|
|
r'''(?:\w|[.]|\[.+?\])*'''
|
2009-10-30 09:34:57 +00:00
|
|
|
# allow empty string
|
2019-10-22 17:38:55 +11:00
|
|
|
r'''|)'''
|
2009-10-30 09:34:57 +00:00
|
|
|
# allow an unfinished index at the end (including quotes)
|
2019-10-22 17:38:55 +11:00
|
|
|
r'''(?:\[[^\]]*$)?)$''',
|
2009-10-30 09:34:57 +00:00
|
|
|
# allow unicode as theoretically this is possible
|
|
|
|
re.UNICODE)
|
2009-10-29 20:55:45 +00:00
|
|
|
|
|
|
|
|
2011-06-29 10:47:43 +00:00
|
|
|
def complete(line, cursor, namespace, private):
|
2009-10-30 09:34:57 +00:00
|
|
|
"""Returns a list of possible completions:
|
|
|
|
|
|
|
|
* name completion
|
|
|
|
* attribute completion (obj.attr)
|
|
|
|
* index completion for lists and dictionaries
|
|
|
|
* module completion (from/import)
|
2009-10-29 20:55:45 +00:00
|
|
|
|
2022-09-19 14:22:31 +10:00
|
|
|
:arg line: incomplete text line
|
2009-10-29 20:55:45 +00:00
|
|
|
:type line: str
|
2022-09-19 14:22:31 +10:00
|
|
|
:arg cursor: current character position
|
2009-10-29 20:55:45 +00:00
|
|
|
:type cursor: int
|
2022-09-19 14:22:31 +10:00
|
|
|
:arg namespace: namespace
|
2009-10-29 20:55:45 +00:00
|
|
|
:type namespace: dict
|
2022-09-19 14:22:31 +10:00
|
|
|
:arg private: whether private variables should be listed
|
2009-10-29 20:55:45 +00:00
|
|
|
:type private: bool
|
|
|
|
:returns: list of completions, word
|
|
|
|
:rtype: list, str
|
2009-11-06 08:53:07 +00:00
|
|
|
|
|
|
|
>>> complete('re.sr', 5, {'re': re})
|
|
|
|
(['re.sre_compile', 're.sre_parse'], 're.sr')
|
2009-10-29 20:55:45 +00:00
|
|
|
"""
|
|
|
|
re_unquoted_word = RE_UNQUOTED_WORD.search(line[:cursor])
|
|
|
|
if re_unquoted_word:
|
|
|
|
# unquoted word -> module or attribute completion
|
|
|
|
word = re_unquoted_word.group(1)
|
|
|
|
if RE_MODULE.match(line):
|
2010-10-18 13:16:43 +00:00
|
|
|
from . import complete_import
|
2009-10-29 20:55:45 +00:00
|
|
|
matches = complete_import.complete(line)
|
2011-06-29 10:47:43 +00:00
|
|
|
if not private:
|
|
|
|
matches[:] = [m for m in matches if m[:1] != "_"]
|
|
|
|
matches.sort()
|
2009-10-29 20:55:45 +00:00
|
|
|
else:
|
2010-10-18 13:16:43 +00:00
|
|
|
from . import complete_namespace
|
PyAPI: use keyword only arguments
Use keyword only arguments for the following functions.
- addon_utils.module_bl_info 2nd arg `info_basis`.
- addon_utils.modules 1st `module_cache`, 2nd arg `refresh`.
- addon_utils.modules_refresh 1st arg `module_cache`.
- bl_app_template_utils.activate 1nd arg `template_id`.
- bl_app_template_utils.import_from_id 2nd arg `ignore_not_found`.
- bl_app_template_utils.import_from_path 2nd arg `ignore_not_found`.
- bl_keymap_utils.keymap_from_toolbar.generate 2nd & 3rd args `use_fallback_keys` & `use_reset`.
- bl_keymap_utils.platform_helpers.keyconfig_data_oskey_from_ctrl 2nd arg `filter_fn`.
- bl_ui_utils.bug_report_url.url_prefill_from_blender 1st arg `addon_info`.
- bmesh.types.BMFace.copy 1st & 2nd args `verts`, `edges`.
- bmesh.types.BMesh.calc_volume 1st arg `signed`.
- bmesh.types.BMesh.from_mesh 2nd..4th args `face_normals`, `use_shape_key`, `shape_key_index`.
- bmesh.types.BMesh.from_object 3rd & 4th args `cage`, `face_normals`.
- bmesh.types.BMesh.transform 2nd arg `filter`.
- bmesh.types.BMesh.update_edit_mesh 2nd & 3rd args `loop_triangles`, `destructive`.
- bmesh.types.{BMVertSeq,BMEdgeSeq,BMFaceSeq}.sort 1st & 2nd arg `key`, `reverse`.
- bmesh.utils.face_split 4th..6th args `coords`, `use_exist`, `example`.
- bpy.data.libraries.load 2nd..4th args `link`, `relative`, `assets_only`.
- bpy.data.user_map 1st..3rd args `subset`, `key_types, `value_types`.
- bpy.msgbus.subscribe_rna 5th arg `options`.
- bpy.path.abspath 2nd & 3rd args `start` & `library`.
- bpy.path.clean_name 2nd arg `replace`.
- bpy.path.ensure_ext 3rd arg `case_sensitive`.
- bpy.path.module_names 2nd arg `recursive`.
- bpy.path.relpath 2nd arg `start`.
- bpy.types.EditBone.transform 2nd & 3rd arg `scale`, `roll`.
- bpy.types.Operator.as_keywords 1st arg `ignore`.
- bpy.types.Struct.{keyframe_insert,keyframe_delete} 2nd..5th args `index`, `frame`, `group`, `options`.
- bpy.types.WindowManager.popup_menu 2nd & 3rd arg `title`, `icon`.
- bpy.types.WindowManager.popup_menu_pie 3rd & 4th arg `title`, `icon`.
- bpy.utils.app_template_paths 1st arg `subdir`.
- bpy.utils.app_template_paths 1st arg `subdir`.
- bpy.utils.blend_paths 1st..3rd args `absolute`, `packed`, `local`.
- bpy.utils.execfile 2nd arg `mod`.
- bpy.utils.keyconfig_set 2nd arg `report`.
- bpy.utils.load_scripts 1st & 2nd `reload_scripts` & `refresh_scripts`.
- bpy.utils.preset_find 3rd & 4th args `display_name`, `ext`.
- bpy.utils.resource_path 2nd & 3rd arg `major`, `minor`.
- bpy.utils.script_paths 1st..4th args `subdir`, `user_pref`, `check_all`, `use_user`.
- bpy.utils.smpte_from_frame 2nd & 3rd args `fps`, `fps_base`.
- bpy.utils.smpte_from_seconds 2nd & 3rd args `fps`, `fps_base`.
- bpy.utils.system_resource 2nd arg `subdir`.
- bpy.utils.time_from_frame 2nd & 3rd args `fps`, `fps_base`.
- bpy.utils.time_to_frame 2nd & 3rd args `fps`, `fps_base`.
- bpy.utils.units.to_string 4th..6th `precision`, `split_unit`, `compatible_unit`.
- bpy.utils.units.to_value 4th arg `str_ref_unit`.
- bpy.utils.user_resource 2nd & 3rd args `subdir`, `create`
- bpy_extras.view3d_utils.location_3d_to_region_2d 4th arg `default`.
- bpy_extras.view3d_utils.region_2d_to_origin_3d 4th arg `clamp`.
- gpu.offscreen.unbind 1st arg `restore`.
- gpu_extras.batch.batch_for_shader 4th arg `indices`.
- gpu_extras.batch.presets.draw_circle_2d 4th arg `segments`.
- gpu_extras.presets.draw_circle_2d 4th arg `segments`.
- imbuf.types.ImBuf.resize 2nd arg `resize`.
- imbuf.write 2nd arg `filepath`.
- mathutils.kdtree.KDTree.find 2nd arg `filter`.
- nodeitems_utils.NodeCategory 3rd & 4th arg `descriptions`, `items`.
- nodeitems_utils.NodeItem 2nd..4th args `label`, `settings`, `poll`.
- nodeitems_utils.NodeItemCustom 1st & 2nd arg `poll`, `draw`.
- rna_prop_ui.draw 5th arg `use_edit`.
- rna_prop_ui.rna_idprop_ui_get 2nd arg `create`.
- rna_prop_ui.rna_idprop_ui_prop_clear 3rd arg `remove`.
- rna_prop_ui.rna_idprop_ui_prop_get 3rd arg `create`.
- rna_xml.xml2rna 2nd arg `root_rna`.
- rna_xml.xml_file_write 4th arg `skip_typemap`.
2021-06-08 18:03:14 +10:00
|
|
|
matches = complete_namespace.complete(word, namespace, private=private)
|
2009-10-29 20:55:45 +00:00
|
|
|
else:
|
|
|
|
# for now we don't have completers for strings
|
|
|
|
# TODO: add file auto completer for strings
|
|
|
|
word = ''
|
|
|
|
matches = []
|
|
|
|
return matches, word
|
|
|
|
|
|
|
|
|
PyAPI: use keyword only arguments
Use keyword only arguments for the following functions.
- addon_utils.module_bl_info 2nd arg `info_basis`.
- addon_utils.modules 1st `module_cache`, 2nd arg `refresh`.
- addon_utils.modules_refresh 1st arg `module_cache`.
- bl_app_template_utils.activate 1nd arg `template_id`.
- bl_app_template_utils.import_from_id 2nd arg `ignore_not_found`.
- bl_app_template_utils.import_from_path 2nd arg `ignore_not_found`.
- bl_keymap_utils.keymap_from_toolbar.generate 2nd & 3rd args `use_fallback_keys` & `use_reset`.
- bl_keymap_utils.platform_helpers.keyconfig_data_oskey_from_ctrl 2nd arg `filter_fn`.
- bl_ui_utils.bug_report_url.url_prefill_from_blender 1st arg `addon_info`.
- bmesh.types.BMFace.copy 1st & 2nd args `verts`, `edges`.
- bmesh.types.BMesh.calc_volume 1st arg `signed`.
- bmesh.types.BMesh.from_mesh 2nd..4th args `face_normals`, `use_shape_key`, `shape_key_index`.
- bmesh.types.BMesh.from_object 3rd & 4th args `cage`, `face_normals`.
- bmesh.types.BMesh.transform 2nd arg `filter`.
- bmesh.types.BMesh.update_edit_mesh 2nd & 3rd args `loop_triangles`, `destructive`.
- bmesh.types.{BMVertSeq,BMEdgeSeq,BMFaceSeq}.sort 1st & 2nd arg `key`, `reverse`.
- bmesh.utils.face_split 4th..6th args `coords`, `use_exist`, `example`.
- bpy.data.libraries.load 2nd..4th args `link`, `relative`, `assets_only`.
- bpy.data.user_map 1st..3rd args `subset`, `key_types, `value_types`.
- bpy.msgbus.subscribe_rna 5th arg `options`.
- bpy.path.abspath 2nd & 3rd args `start` & `library`.
- bpy.path.clean_name 2nd arg `replace`.
- bpy.path.ensure_ext 3rd arg `case_sensitive`.
- bpy.path.module_names 2nd arg `recursive`.
- bpy.path.relpath 2nd arg `start`.
- bpy.types.EditBone.transform 2nd & 3rd arg `scale`, `roll`.
- bpy.types.Operator.as_keywords 1st arg `ignore`.
- bpy.types.Struct.{keyframe_insert,keyframe_delete} 2nd..5th args `index`, `frame`, `group`, `options`.
- bpy.types.WindowManager.popup_menu 2nd & 3rd arg `title`, `icon`.
- bpy.types.WindowManager.popup_menu_pie 3rd & 4th arg `title`, `icon`.
- bpy.utils.app_template_paths 1st arg `subdir`.
- bpy.utils.app_template_paths 1st arg `subdir`.
- bpy.utils.blend_paths 1st..3rd args `absolute`, `packed`, `local`.
- bpy.utils.execfile 2nd arg `mod`.
- bpy.utils.keyconfig_set 2nd arg `report`.
- bpy.utils.load_scripts 1st & 2nd `reload_scripts` & `refresh_scripts`.
- bpy.utils.preset_find 3rd & 4th args `display_name`, `ext`.
- bpy.utils.resource_path 2nd & 3rd arg `major`, `minor`.
- bpy.utils.script_paths 1st..4th args `subdir`, `user_pref`, `check_all`, `use_user`.
- bpy.utils.smpte_from_frame 2nd & 3rd args `fps`, `fps_base`.
- bpy.utils.smpte_from_seconds 2nd & 3rd args `fps`, `fps_base`.
- bpy.utils.system_resource 2nd arg `subdir`.
- bpy.utils.time_from_frame 2nd & 3rd args `fps`, `fps_base`.
- bpy.utils.time_to_frame 2nd & 3rd args `fps`, `fps_base`.
- bpy.utils.units.to_string 4th..6th `precision`, `split_unit`, `compatible_unit`.
- bpy.utils.units.to_value 4th arg `str_ref_unit`.
- bpy.utils.user_resource 2nd & 3rd args `subdir`, `create`
- bpy_extras.view3d_utils.location_3d_to_region_2d 4th arg `default`.
- bpy_extras.view3d_utils.region_2d_to_origin_3d 4th arg `clamp`.
- gpu.offscreen.unbind 1st arg `restore`.
- gpu_extras.batch.batch_for_shader 4th arg `indices`.
- gpu_extras.batch.presets.draw_circle_2d 4th arg `segments`.
- gpu_extras.presets.draw_circle_2d 4th arg `segments`.
- imbuf.types.ImBuf.resize 2nd arg `resize`.
- imbuf.write 2nd arg `filepath`.
- mathutils.kdtree.KDTree.find 2nd arg `filter`.
- nodeitems_utils.NodeCategory 3rd & 4th arg `descriptions`, `items`.
- nodeitems_utils.NodeItem 2nd..4th args `label`, `settings`, `poll`.
- nodeitems_utils.NodeItemCustom 1st & 2nd arg `poll`, `draw`.
- rna_prop_ui.draw 5th arg `use_edit`.
- rna_prop_ui.rna_idprop_ui_get 2nd arg `create`.
- rna_prop_ui.rna_idprop_ui_prop_clear 3rd arg `remove`.
- rna_prop_ui.rna_idprop_ui_prop_get 3rd arg `create`.
- rna_xml.xml2rna 2nd arg `root_rna`.
- rna_xml.xml_file_write 4th arg `skip_typemap`.
2021-06-08 18:03:14 +10:00
|
|
|
def expand(line, cursor, namespace, *, private=True):
|
2023-09-03 21:35:03 +10:00
|
|
|
"""This method is invoked when the user asks auto-completion,
|
2009-10-29 20:55:45 +00:00
|
|
|
e.g. when Ctrl+Space is clicked.
|
|
|
|
|
2022-09-19 14:22:31 +10:00
|
|
|
:arg line: incomplete text line
|
2009-10-29 20:55:45 +00:00
|
|
|
:type line: str
|
2022-09-19 14:22:31 +10:00
|
|
|
:arg cursor: current character position
|
2009-10-29 20:55:45 +00:00
|
|
|
:type cursor: int
|
2022-09-19 14:22:31 +10:00
|
|
|
:arg namespace: namespace
|
2009-10-29 20:55:45 +00:00
|
|
|
:type namespace: dict
|
2022-09-19 14:22:31 +10:00
|
|
|
:arg private: whether private variables should be listed
|
2009-10-29 20:55:45 +00:00
|
|
|
:type private: bool
|
|
|
|
:returns:
|
|
|
|
|
|
|
|
current expanded line, updated cursor position and scrollback
|
|
|
|
|
|
|
|
:rtype: str, int, str
|
2009-11-06 08:53:07 +00:00
|
|
|
|
|
|
|
>>> expand('os.path.isdir(', 14, {'os': os})[-1]
|
|
|
|
'isdir(s)\\nReturn true if the pathname refers to an existing directory.'
|
|
|
|
>>> expand('abs(', 4, {})[-1]
|
|
|
|
'abs(number) -> number\\nReturn the absolute value of the argument.'
|
2009-10-29 20:55:45 +00:00
|
|
|
"""
|
2009-11-06 08:53:07 +00:00
|
|
|
if line[:cursor].strip().endswith('('):
|
2010-10-18 13:16:43 +00:00
|
|
|
from . import complete_calltip
|
2016-07-29 21:22:27 +10:00
|
|
|
matches, word, scrollback = complete_calltip.complete(
|
|
|
|
line, cursor, namespace)
|
2011-06-11 17:03:26 +00:00
|
|
|
prefix = os.path.commonprefix(matches)[len(word):]
|
2009-11-06 08:53:07 +00:00
|
|
|
no_calltip = False
|
|
|
|
else:
|
|
|
|
matches, word = complete(line, cursor, namespace, private)
|
2011-06-11 17:03:26 +00:00
|
|
|
prefix = os.path.commonprefix(matches)[len(word):]
|
2009-11-06 08:53:07 +00:00
|
|
|
if len(matches) == 1:
|
|
|
|
scrollback = ''
|
|
|
|
else:
|
2023-02-12 14:37:16 +11:00
|
|
|
# causes blender bug #27495 since string keys may contain '.'
|
2011-06-10 07:22:35 +00:00
|
|
|
# scrollback = ' '.join([m.split('.')[-1] for m in matches])
|
2011-06-29 06:06:59 +00:00
|
|
|
|
|
|
|
# add white space to align with the cursor
|
|
|
|
white_space = " " + (" " * (cursor + len(prefix)))
|
2011-06-11 17:03:26 +00:00
|
|
|
word_prefix = word + prefix
|
2011-06-29 06:06:59 +00:00
|
|
|
scrollback = '\n'.join(
|
2016-07-29 21:22:27 +10:00
|
|
|
[white_space + m[len(word_prefix):]
|
|
|
|
if (word_prefix and m.startswith(word_prefix))
|
|
|
|
else
|
2023-04-13 13:14:05 +10:00
|
|
|
white_space + m.rsplit('.', 1)[-1]
|
2016-07-29 21:22:27 +10:00
|
|
|
for m in matches])
|
2011-06-10 07:22:35 +00:00
|
|
|
|
2009-11-06 08:53:07 +00:00
|
|
|
no_calltip = True
|
2011-06-11 17:03:26 +00:00
|
|
|
|
2009-10-29 20:55:45 +00:00
|
|
|
if prefix:
|
|
|
|
line = line[:cursor] + prefix + line[cursor:]
|
2013-02-24 21:51:48 +00:00
|
|
|
cursor += len(prefix.encode('utf-8'))
|
2009-11-06 08:53:07 +00:00
|
|
|
if no_calltip and prefix.endswith('('):
|
PyAPI: use keyword only arguments
Use keyword only arguments for the following functions.
- addon_utils.module_bl_info 2nd arg `info_basis`.
- addon_utils.modules 1st `module_cache`, 2nd arg `refresh`.
- addon_utils.modules_refresh 1st arg `module_cache`.
- bl_app_template_utils.activate 1nd arg `template_id`.
- bl_app_template_utils.import_from_id 2nd arg `ignore_not_found`.
- bl_app_template_utils.import_from_path 2nd arg `ignore_not_found`.
- bl_keymap_utils.keymap_from_toolbar.generate 2nd & 3rd args `use_fallback_keys` & `use_reset`.
- bl_keymap_utils.platform_helpers.keyconfig_data_oskey_from_ctrl 2nd arg `filter_fn`.
- bl_ui_utils.bug_report_url.url_prefill_from_blender 1st arg `addon_info`.
- bmesh.types.BMFace.copy 1st & 2nd args `verts`, `edges`.
- bmesh.types.BMesh.calc_volume 1st arg `signed`.
- bmesh.types.BMesh.from_mesh 2nd..4th args `face_normals`, `use_shape_key`, `shape_key_index`.
- bmesh.types.BMesh.from_object 3rd & 4th args `cage`, `face_normals`.
- bmesh.types.BMesh.transform 2nd arg `filter`.
- bmesh.types.BMesh.update_edit_mesh 2nd & 3rd args `loop_triangles`, `destructive`.
- bmesh.types.{BMVertSeq,BMEdgeSeq,BMFaceSeq}.sort 1st & 2nd arg `key`, `reverse`.
- bmesh.utils.face_split 4th..6th args `coords`, `use_exist`, `example`.
- bpy.data.libraries.load 2nd..4th args `link`, `relative`, `assets_only`.
- bpy.data.user_map 1st..3rd args `subset`, `key_types, `value_types`.
- bpy.msgbus.subscribe_rna 5th arg `options`.
- bpy.path.abspath 2nd & 3rd args `start` & `library`.
- bpy.path.clean_name 2nd arg `replace`.
- bpy.path.ensure_ext 3rd arg `case_sensitive`.
- bpy.path.module_names 2nd arg `recursive`.
- bpy.path.relpath 2nd arg `start`.
- bpy.types.EditBone.transform 2nd & 3rd arg `scale`, `roll`.
- bpy.types.Operator.as_keywords 1st arg `ignore`.
- bpy.types.Struct.{keyframe_insert,keyframe_delete} 2nd..5th args `index`, `frame`, `group`, `options`.
- bpy.types.WindowManager.popup_menu 2nd & 3rd arg `title`, `icon`.
- bpy.types.WindowManager.popup_menu_pie 3rd & 4th arg `title`, `icon`.
- bpy.utils.app_template_paths 1st arg `subdir`.
- bpy.utils.app_template_paths 1st arg `subdir`.
- bpy.utils.blend_paths 1st..3rd args `absolute`, `packed`, `local`.
- bpy.utils.execfile 2nd arg `mod`.
- bpy.utils.keyconfig_set 2nd arg `report`.
- bpy.utils.load_scripts 1st & 2nd `reload_scripts` & `refresh_scripts`.
- bpy.utils.preset_find 3rd & 4th args `display_name`, `ext`.
- bpy.utils.resource_path 2nd & 3rd arg `major`, `minor`.
- bpy.utils.script_paths 1st..4th args `subdir`, `user_pref`, `check_all`, `use_user`.
- bpy.utils.smpte_from_frame 2nd & 3rd args `fps`, `fps_base`.
- bpy.utils.smpte_from_seconds 2nd & 3rd args `fps`, `fps_base`.
- bpy.utils.system_resource 2nd arg `subdir`.
- bpy.utils.time_from_frame 2nd & 3rd args `fps`, `fps_base`.
- bpy.utils.time_to_frame 2nd & 3rd args `fps`, `fps_base`.
- bpy.utils.units.to_string 4th..6th `precision`, `split_unit`, `compatible_unit`.
- bpy.utils.units.to_value 4th arg `str_ref_unit`.
- bpy.utils.user_resource 2nd & 3rd args `subdir`, `create`
- bpy_extras.view3d_utils.location_3d_to_region_2d 4th arg `default`.
- bpy_extras.view3d_utils.region_2d_to_origin_3d 4th arg `clamp`.
- gpu.offscreen.unbind 1st arg `restore`.
- gpu_extras.batch.batch_for_shader 4th arg `indices`.
- gpu_extras.batch.presets.draw_circle_2d 4th arg `segments`.
- gpu_extras.presets.draw_circle_2d 4th arg `segments`.
- imbuf.types.ImBuf.resize 2nd arg `resize`.
- imbuf.write 2nd arg `filepath`.
- mathutils.kdtree.KDTree.find 2nd arg `filter`.
- nodeitems_utils.NodeCategory 3rd & 4th arg `descriptions`, `items`.
- nodeitems_utils.NodeItem 2nd..4th args `label`, `settings`, `poll`.
- nodeitems_utils.NodeItemCustom 1st & 2nd arg `poll`, `draw`.
- rna_prop_ui.draw 5th arg `use_edit`.
- rna_prop_ui.rna_idprop_ui_get 2nd arg `create`.
- rna_prop_ui.rna_idprop_ui_prop_clear 3rd arg `remove`.
- rna_prop_ui.rna_idprop_ui_prop_get 3rd arg `create`.
- rna_xml.xml2rna 2nd arg `root_rna`.
- rna_xml.xml_file_write 4th arg `skip_typemap`.
2021-06-08 18:03:14 +10:00
|
|
|
return expand(line, cursor, namespace, private=private)
|
2009-10-29 20:55:45 +00:00
|
|
|
return line, cursor, scrollback
|