Duncan Lilley

Results 12 issues of Duncan Lilley

This request was raised by @goldrik in #85. VS Code should detect if a line is continuing and automatically add ellipses when the user presses `enter` while typing out a...

enhancement

Splitting part of #8 into this feature request, as the other part of it has been resolved. It would be great to have code sections highlighted similar to the MATLAB...

enhancement

**Describe the bug** When the `classdef` and its matching `end` are misaligned, attempting to suppress the resulting warning diagnostic causes the diagnostic suppression to be inserted after the `end` instead...

bug

**Describe the bug** When block comments are toggled using Shift+Alt+A, existing block comments are never removed, only added, effectively nesting the block comments. **To Reproduce** Steps to reproduce the behavior:...

bug

When the installPath setting has leading or trailing whitespace, MATLAB fails to launch.

bug

**Is your feature request related to a problem? Please describe.** When writing a function, loop, or an if-statement, the `end` keyword for the closing of the block should be automatically...

enhancement

**Is your feature request related to a problem? Please describe.** It's useful to be able to easily see the output window (Output tab -> MATLAB Language Server in dropdown). **Describe...

enhancement

Create two classes - `Base.m`: ``` classdef Base methods function methodName(~) end end end ``` `Derived.m`: ``` classdef Derived < Base methods function methodName(obj) methodName@Base(obj); end end end ``` Select...

bug

Create a file, `Foo.m` with the following contents: ``` classdef Foo < handle methods function myFunc(~) disp('myFunc') end end end ``` This should cause the outline to update correctly. From...

bug

**Describe the bug** When auto-completing a string in a function call, the auto-complete inserts an extra quote at the end, resulting in a syntax error. **To Reproduce** Steps to reproduce...

bug