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"

Line 1: Line 1:
 
=New & Noteworthy 1.1=
 
=New & Noteworthy 1.1=
 +
 +
==Natural Completion On Strings==
 +
 +
It now possible to trigger completion on ''#string'' variable without using the ''string'' module. You have completion for ''mystring:sub(...)''.
 +
 +
[[Image:RegularStringCompression.png|center]]
 +
<center><small>Completion on ''#string'' variable from assignment</small></center>
 +
[[Image:TypedStringCompression.png|center]]
 +
<center><small>Completion on ''#string'' variable from explicit typing</small></center>
  
 
==Better Error Handling==
 
==Better Error Handling==

Revision as of 09:12, 20 September 2013

New & Noteworthy 1.1

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