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
diff options
context:
space:
mode:
authorCampbell Barton <campbell@blender.org>2022-02-22 11:57:36 +0300
committerCampbell Barton <campbell@blender.org>2022-02-22 11:57:36 +0300
commit0ad4d2694bae7f4db551138ec79a46f8f7e57bba (patch)
treebed2cae56442480878ff8883913b8e6b5bdf54db /source/blender/editors/space_console
parentc5b66560de75a54b5c6920fb675c0d804caeb724 (diff)
Python: change behavior for CONSOLE_OT_indent_or_autocomplete
Checking only the previous character broke import auto-completion.
Diffstat (limited to 'source/blender/editors/space_console')
-rw-r--r--source/blender/editors/space_console/console_ops.c13
1 files changed, 12 insertions, 1 deletions
diff --git a/source/blender/editors/space_console/console_ops.c b/source/blender/editors/space_console/console_ops.c
index c6fb2560dc0..0201b11f0bb 100644
--- a/source/blender/editors/space_console/console_ops.c
+++ b/source/blender/editors/space_console/console_ops.c
@@ -470,7 +470,18 @@ void CONSOLE_OT_insert(wmOperatorType *ot)
static int console_indent_or_autocomplete_exec(bContext *C, wmOperator *UNUSED(op))
{
ConsoleLine *ci = console_history_verify(C);
- bool text_before_cursor = ci->cursor != 0 && !ELEM(ci->line[ci->cursor - 1], ' ', '\t');
+ bool text_before_cursor = false;
+
+ /* Check any text before cursor (not just the previous character) as is done for
+ * #TEXT_OT_indent_or_autocomplete because Python auto-complete operates on import
+ * statements such as completing possible sub-modules: `from bpy import `. */
+ for (int i = 0; i < ci->cursor; i += BLI_str_utf8_size_safe(&ci->line[i])) {
+ if (!ELEM(ci->line[i], ' ', '\t')) {
+ text_before_cursor = true;
+ break;
+ }
+ }
+
if (text_before_cursor) {
WM_operator_name_call(C, "CONSOLE_OT_autocomplete", WM_OP_INVOKE_DEFAULT, NULL);
}