Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoralopezvenegas2016-04-18 18:33:17 +0000
committerIlya Buziuk2016-04-18 19:11:06 +0000
commitd520868b9e89982f7e39c5dde54b45758374d8af (patch)
tree83cfcef2959dae907ea49ccba517a9becdc6f45d
parent9b49dcade8e56489d60eb32ef2fe6a46698fb84d (diff)
downloadwebtools.jsdt-d520868b9e89982f7e39c5dde54b45758374d8af.tar.gz
webtools.jsdt-d520868b9e89982f7e39c5dde54b45758374d8af.tar.xz
webtools.jsdt-d520868b9e89982f7e39c5dde54b45758374d8af.zip
Bug 491739 - Rename Node.js launch shortcut
Renamed Node Launch Shortcut and Node Launch Configuration Type from "Node" to "Node.js Application" Change-Id: I9f9afaa429d6abc7f9fa39f93f26f3679b03a2b6 Signed-off-by: alopezvenegas <adalbert@mx1.ibm.com>
-rw-r--r--nodejs/org.eclipse.wst.jsdt.js.node/plugin.xml6
1 files changed, 3 insertions, 3 deletions
diff --git a/nodejs/org.eclipse.wst.jsdt.js.node/plugin.xml b/nodejs/org.eclipse.wst.jsdt.js.node/plugin.xml
index d33727739..67f2d2d53 100644
--- a/nodejs/org.eclipse.wst.jsdt.js.node/plugin.xml
+++ b/nodejs/org.eclipse.wst.jsdt.js.node/plugin.xml
@@ -14,11 +14,11 @@
point="org.eclipse.debug.ui.launchShortcuts">
<shortcut
class="org.eclipse.wst.jsdt.js.node.internal.launch.shortcut.NodeLaunch"
- description="Node"
+ description="Node.js Application"
helpContextId="org.eclipse.ui.externaltools.launchShortcutHelpContext.NodeShortcut"
icon="icons/transparent.gif"
id="org.eclipse.wst.jsdt.js.node.internal.launch.shortcut.NodeLaunch"
- label="Node"
+ label="Node.js Application"
modes="run,debug">
<contextualLaunch>
<enablement>
@@ -51,7 +51,7 @@
id="org.eclipse.wst.jsdt.js.node.NodeLaunchConfigurationType"
delegate="org.eclipse.wst.jsdt.js.node.internal.launch.NodeLaunchConfigurationDelegate"
modes="run,debug"
- name="Node">
+ name="Node.js Application">
</launchConfigurationType>
</extension>

Back to the top