Jan Ph. H.

Results 467 comments of Jan Ph. H.
trafficstars

@KillingSpark Dynamic dependency resolvement is a hard task, but its kind of related to borrow checking in Rust where you must give an explicit lifetime order how stuff is started...

2. can be done significantly simpler as shown by seatd. It remains to see how complete the implementation is, but so far it is looking very clean and used by...

I checked and found out that this is not yet implemented, lol. -_-

@KillingSpark Sorry, I was wrong on that. From some conversations on reddit, the main source of complexity is due to possibly malfunctioning programs and tracking of double-forks and alike. This...

For something useful and minimal, you could provide ```lua vim.api.nvim_create_augroup({ name = 'MYAUCMDS', clear = true }) -- text yank highlighting vim.api.nvim_create_autocmd({ group='MYAUCMDS', event = 'TextYankPost', pattern = '*', command...

With the latest breaking change, this is now ```lua vim.api.nvim_create_augroup('MYAUCMDS', {clear = true}) vim.api.nvim_create_autocmd('TextYankPost', {group = 'MYAUCMDS', pattern = '*', command = [[silent! lua require'vim.highlight'.on_yank({timeout = 100})]]}) vim.api.nvim_create_autocmd('BufWritePre', {group =...

Also works for buffers now: https://github.com/neovim/neovim/pull/17594

stuff like `NOTE make sure you have [node](https://nodejs.org/en/) installed, I recommend a node manager like [fnm](https://github.com/Schniz/fnm).` is not necessary to use neovim. It should be mentioned, why the additional dependency...

[#14660 looks related](https://github.com/neovim/neovim/pull/14060). What is the help page to look for the functions?

> Ok, so the warm-cache runtime looks like this: > > ![scaling](https://user-images.githubusercontent.com/4209276/67885761-70c9c800-fb48-11e9-9b7e-42c9a497db90.png) > > Choosing 96 threads by default is obviously not optimal here. This looks to me like the...