Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "LDT/User Area/New Noteworthy/New Noteworthy 1.1"

(Natural Completion On Strings)
Line 1: Line 1:
 
=New & Noteworthy 1.1=
 
=New & Noteworthy 1.1=
 +
 +
== Type and Module Detection ==
 +
 +
=== Type Detection ===
 +
[[Image:ScreenTypeDetection.png|center]]
 +
<center><small>Type detection</small></center>
 +
 +
=== Module Detection ===
 +
 +
Module detection is quite simple: it is ''simply returning a type''. See below.
 +
[[Image:ScreenModuleDetection.png|center]]
 +
<center><small>Module detection</small></center>
  
 
==Natural Completion On Strings==
 
==Natural Completion On Strings==

Revision as of 11:32, 20 September 2013

New & Noteworthy 1.1

Type and Module Detection

Type Detection

ScreenTypeDetection.png
Type detection

Module Detection

Module detection is quite simple: it is simply returning a type. See below.

ScreenModuleDetection.png
Module detection

Natural Completion On Strings

It now possible to trigger completion on #string variable without using the string module. You have completion for mystring:sub(...).

RegularStringCompression.png
Completion on #string variable from assignment
TypedStringCompression.png
Completion on #string variable from explicit typing

Better Error Handling

To speed up syntax error troubleshooting, the output given is now the Lua 5.1 interpreter one. During the process, syntax error detection became about 10 times faster.

Formatter Defaults

For a better out of the box experience, formatter now uses Lua's 2 spaces indentation standard by default.

Smarter Auto Close

Auto close got smarter and feels more natural. It is a silent improvement. If you did not notice it, it indicates it works just fine.

Back to the top