Intellisense for the Text Editor

  • Change 1

Since blender 3.3, the module folder of the console has been moved.

from
from console import intellisense

to

try:
    from console import intellisense
except ModuleNotFoundError:
    from bl_console_utils.autocomplete import intellisense
  • Change 2(send Console)

Variables were supported in early versions.
It is not perfect, but as an emergency
“CTRL + SHIFT + ENTER” will send the specified line to the console.
the specified line to the console.

I have created a modified version.
You can use it if you like.

How to use?(GIF ANIMATION)

Use Bpy module
Animation

use Send console
4
11

How to use other module
Animation (1)
1

Use python code
2
3

4 Likes