jwortmann

Results 44 issues of jwortmann

When a file is saved, a `textDocument/didSave` notifications should be sent to the server if it opts-in via TextDocumentSyncOptions. But if the file gets closed immediately after saving, the notification...

*Untested, but I think something like this could work* CI will obviously fail until the protocol types are updated to the latest spec version. This would probably make https://github.com/sublimelsp/LSP/commit/29100425f8c2635d7b33524519c4bf2bbd6ee86f obsolete...

There are some limitations when running a selection or block of code with Alt+Enter; macros like `@__FILE__` don't work and if there is an exception thrown, no information about where...

This should prevent the decrease of the indentation level which happens automatically after you typed something which coincidentally starts with one of the specified keywords. For example if you type...

Before: ![before](https://github.com/JuliaEditorSupport/Julia-sublime/assets/6579999/99df57c7-9f23-46c7-9031-41354a129501) After: ![after](https://github.com/JuliaEditorSupport/Julia-sublime/assets/6579999/85f4e2e4-08e8-480c-836d-8e7e8f22aa23)

This allows to press the Enter key to insert a linebreak after a keyword at the end of the line, without accidentally inserting the 2nd best completion match. Also see...

When you type a new identifier, for example a struct or function definition, there is one completion item with the exact part of the name that you have already typed....

This would allow to display images for arbitrary user types, as long as they provide an implementation for `Base.show` for the MIME type `image/png` as described at https://docs.julialang.org/en/v1/manual/types/#man-custom-pretty-printing. Example: ```julia...

How can I use `imshow` to display an image of my custom type which has support for the `image/png` MIME type via `Base.show`? Is it not supported, or is `imshow`...

I noticed that the drive letter normalization from my PR #1313 was incomplete and also needs to be added for the environment changing via `julia/activateenvironment` here: https://github.com/julia-vscode/LanguageServer.jl/blob/0da181a8e48da14c2ac46519311e01352c7c6fca/src/requests/misc.jl#L85-L109 This exact same...