Leon

Results 148 comments of Leon

I'm having similar issues with `--new-window` and `--new-instance`. A quick peek at the tree reveals that `--new-instance` is commented out in the opt parser (maybe the CLI help needs fixing...

For me the `--new-window` issue was resolved by a distro upgrade to mupdf: https://github.com/void-linux/void-packages/pull/48724 Which means that #856 was the probable culprit.

@Vinni-Cedraz If you are on NeoVim, I have since created my own plugin to handle floating terminals: [haunt.nvim](https://github.com/adigitoleo/haunt.nvim). It won't help for vim8 though, as it is written in lua.

I have pushed a v2 of haunt.nvim which fixes a lot of things. But requires neovim 0.10. Will write a quick blog post about it with a video demo soon,...

> they do not explain how to install the editor system/user wide This depends on your system/package manager. You should probably consult its manuals instead. On linux, see also [install(1)](https://man7.org/linux/man-pages/man1/install.1.html).

[NodeJS_16 recipe](https://github.com/JuliaPackaging/Yggdrasil/blob/master/N/NodeJS/NodeJS_16/build_tarballs.jl) and [wrapper package](https://github.com/JuliaBinaryWrappers/NodeJS_16_jll.jl) links for lazy people. Available for Julia > 1.6 with `]add NodeJS_16_jll`. Syntax for running npm commands becomes e.g. ``run(`$(npm) install foo`)``.

This is a (nested) parametric type definition, which are IMHO the most complicated part of Julia's type system. If you're not familiar with them, I have [opened a PR](https://github.com/JuliaLang/julia/pull/43891) to...

I've just read in #55 that it's actually a bit more complicated in practice: you can end up with `N = 2` tables in some cases. The discussion over in...

May I also suggest changing the title to something more descriptive (like "Understanding the `Table` type qualifier").

> What does the syntax of `T And what does the ```(…)``` signify? This is not Julia syntax, I just wrote it like that for brevity. The component `T NamedTuple...