Michael Konečný

Results 17 issues of Michael Konečný

Often, we add comments above a function declaration to describe what it does, similarly to JavaDoc: ``` ! This is an example subroutine. Call it whenever you want. subroutine example()...

enhancement

Hello, hope you're good. If I have a subroutine such as ```fortran subroutine mySubroutine(a, b, c, d, e) ! ... end subroutine ``` and I'm writing a call to it,...

bug

Fortran supports passing arguments via their names. For example, this function: ``` subroutine mysubroutine(arg1, arg2) integer, intent(in) :: arg1 integer, intent(in) :: arg2 !... end subroutine mysubroutine ``` can be...

enhancement

I realise this is a non-standard extension, however, it's quite wide-spread and I prefer it to the percent symbol, simply because of much better readability. ``` type mytype integer ::...

extension

It would be great if autocomplete could also suggest to me names from modules I haven't yet `use`d. On selecting this suggestion, the use-only statement for this name would then...

enhancement

Hi, sorry to bother you. I noticed you added symbol renaming. I just can't get it to work. I've tried right clicking on the variable and selecting rename ![image](https://user-images.githubusercontent.com/4976024/57735594-6c4a4980-76a5-11e9-884a-5bbc98693351.png) as...

I don't know how much it is possible to modify Matlab's autocompletion lists, but when I want to type a variable such as ``XLastConverged`` it would be great to be...

enhancement
difficulty - hard

This is a feature request. Analogically to bookmarksViewer, it would be nice to be able to view all breakpoints in a window. One can get them now by typing `dbstatus`...

enhancement

If I press Ctrl+Shift+Y twice very quickly, three lines get sometimes deleted instead of two. Seems like the first deletion operation wasn't finished when the second keypress occurred and they...

bug

When I type ``` var++ ``` I should get ``` var = var + 1 ``` not just ``` var = var + ``` Also, the cursor should jump behind...

enhancement