I am using a flatpak VSCodium installation (VSCode without telemetry) on linux (PopOS, Mint).
I have the python and django extensions installed.
I’m using Pipenv to create my projects virtual environment and have ensured that the interpreter is set to the pipenv venv location.
Problem:
I cannot ctrl + click (or right click and “Go to definition”) for django imports such as
from django.urls import path
while I can go to definitions imported from my other apps in my workspace such as
from users.models import User
Does anyone know what I need to do to be able to go to definitions (and get other intelliSense features) working for the django imports?
Thank you!