-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Autocompletion of imports, class names, and static fields and methods after a classname #47
Conversation
This can happen when using a networked account across different computers or with different monitors.
and collect info and URLs from their pom.xml
fixes or replaces the "Open Help" menu item, by using ClassUtils and showing a UI that lists all matching classes with buttons to open their source code in github or gitlab and the javadoc when available (will guess the URL, load it, and not show a link to it when 404). Can match partial text (the list of possible classes may be longer) and can also match package names or partial package names. Any substring of a fully qualified class name will be matched, which is fabulous. (Compare with current implementatio nof "Open Help..." which requires a fully qualified class name to work, which is not useful as often one does not know it or not have it handy in a script.)
of package suffixes comes from java 8.
for other directories.
for a name that matches a subURL of javadoc.scijava.org
…ckage and fields and methods of imported classes.
This pull request has been mentioned on Image.sc Forum. There might be relevant details there: https://forum.image.sc/t/auto-code-completion-for-python-and-groovy-in-imagej-fiji/20515/15 |
Hi @ctrueden, |
class names on any substring rather than only the beginning.
…lass name, not just the beginning.
This pull request has been mentioned on Image.sc Forum. There might be relevant details there: https://forum.image.sc/t/help-wanted-to-understand-the-service-discovery-model-in-scijava/45919/4 |
@acardona wrote:
Yes, @haesleinhuepf implemented auto-completion for the IJ1 Macro language, which ships by default with EDIT: |
4e1a665
to
cc6e1d6
Compare
cc6e1d6
to
167ab74
Compare
This branch is now ready to merge, implementing java class autocompletion, static method autocompletion, and automatic import insertion for jython scripts. In addition, includes previous fixes for constraining dimensions of the Script Editor window to within the screen (to e.g. avoid seg faults in virtual desktops), and also a new menu item to open source or javadoc for a selected class or package. Ideally, this branch would be merged and released immediately for use in the I2K conference starting tomorrow. My own tutorial is on December 1st, 2020 at UTC 21:00, and we'll make heavy use of jython scripting using java classes. |
This pull request has been mentioned on Image.sc Forum. There might be relevant details there: https://forum.image.sc/t/auto-code-completion-for-python-and-groovy-in-imagej-fiji/20515/20 |
In any language, even in no language (for now), type and press control+space:
This code builds on
ClassUtil
(the helper class aiming at fixing the "Open help for Class..." which is preliminary implemented as "Source or javadoc for class or package...", see #46 ).This pull request is merely a point of discussion and exploration.
NOTE that it will take a few seconds before the autocompletion with control+space starts working: your system will be busy collecting class names from all jar files in Fiji.
There are some known issues:
"from ij import IJ, ImagePl"
... fails to recognize that this is the
importStatement
pattern, even though when tested separately in jython it works. May have to do with different number of backslashes for escaping characters.