Intellisense features for Java packages using the Jython Interpreter #6422
Unanswered
Khalid-Tarek
asked this question in
Q&A
Replies: 1 comment 5 replies
-
Moving this to Pylance. There are two approaches to python completion, Jedi (object inspection), and Pylance (Type Analysis). Jedi Language Server: https://github.com/pappasam/jedi-language-server uses |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have been trying to setup an environment where I can create scripts for IBM Maximo using Jython. I have downloaded the Jython interpreter, added the maximo library to the Jython library, and finally selected Jython as my Python interpreter.
The following behavior arises: -
My end goal is to enable the following features: -
So far, after searching for an existing extension that adds Jython support to VSCode, I have found none. Therefore, the only solution I can see right now is to create an extension that achieves that. I am not fluent in VSCode API yet, and before I commit to learning it, I wanted to inquire about the validity of my thought process:
I am assuming it would be much easier if the library is in the decompiled form (.java files) but I am also going to look into using the singular .jar library as well. I would also appreciate any comments on that.
Beta Was this translation helpful? Give feedback.
All reactions