From d1628483bfe4a424768f10bf36677cbe25b7e9c3 Mon Sep 17 00:00:00 2001 From: Karl Duderstadt Date: Fri, 29 Jul 2022 14:01:04 +0200 Subject: [PATCH] rename supported language to Python (Jython) This change will prevent confusion with the new Python (PyImageJ) language. This change is required for autocompletion to work with the renamed language in scripting-jython https://github.com/scijava/scripting-jython/commit/07dc8b0a5fe840c0f70669be564cfc1f926c1f12 --- .../scripteditor/jython/JythonLanguageSupportPlugin.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/scijava/plugins/scripteditor/jython/JythonLanguageSupportPlugin.java b/src/main/java/org/scijava/plugins/scripteditor/jython/JythonLanguageSupportPlugin.java index cff5b82..ff5ca5c 100644 --- a/src/main/java/org/scijava/plugins/scripteditor/jython/JythonLanguageSupportPlugin.java +++ b/src/main/java/org/scijava/plugins/scripteditor/jython/JythonLanguageSupportPlugin.java @@ -59,7 +59,7 @@ public JythonLanguageSupportPlugin() { @Override public String getLanguageName() { - return "python"; + return "Python (Jython)"; } @Override