Leonardo
Leonardo
While reading [this](https://developer.mozilla.org/en-US/docs/Web/API/WebVTT_API) doc I remembered why I use `html.unescape`. It's because of the ampersand (`&`) and greater-than (`>`) escape sequences, not because of tags. WebVTT styling is a little...
You're using [nvim-lspconfig](https://github.com/neovim/nvim-lspconfig). I use [nvim-jdtls](https://github.com/mfussenegger/nvim-jdtls) and that is not an issue. Check my config files: [ftplugin/java.lua](https://github.com/lbrayner/dotvim/blob/master/ftplugin/java.lua) and [lua/lbrayner/jdtls.lua](https://github.com/lbrayner/dotvim/blob/master/lua/lbrayner/jdtls.lua). I start the language server with a buffer local command `JdtlsStart`,...
Just letting you know that, as of the 20th of November 2020 (https://github.com/ervandew/eclim/commit/99a517e836f8deb66d43266bdb7f7fb8b26ed786), the master branch builds against Eclipse 4.17 (2020-09). You can build it yourself with *ant*: `ant installer`.
> > Just letting you know that, as of the 20th of November 2020 ([99a517e](https://github.com/ervandew/eclim/commit/99a517e836f8deb66d43266bdb7f7fb8b26ed786)), the master branch builds against Eclipse 4.17 (2020-09). You can build it yourself with _ant_:...
> Can you share an example project that triggers this? I'm not sure this is the correct way to deal with this Any 2 projects will do, but here is...
This is fixed as of `neovim-0.9.0~ubuntu1+git202212280018-d215dae0e-333b5866f`, i.e. https://github.com/neovim/neovim/commit/bf459641a85ff1b4f24196ba6345de7bb8159884, but it wasn't exactly this realease, it's just that I realized it right now.
Hey, just took a look at the `webvtt-py` docs and no, this is currently not possible. It really would be a great feature. The most it can do is spit...
Looking at the code I realized the dummy here was importing an unused library (`html2text`). Pushed a commit removing that requirement.
> ... > As said here: https://webvtt-py.readthedocs.io/en/latest/usage.html#converting-captions These few lines of code would just be enough. > > ``` > import webvtt > > # save in SRT format >...
@asmodeus812 jdtls supports multiple workspace folders, but it's still a single project. That is, you share settings such as the runtime. Currently a workspace folder is not on pair with...