David Else

Results 246 comments of David Else

- Node 12 LTS and 13 now has ESM 99.9% finished, they won't change the spec now https://nodejs.org/api/esm.html - Deno 1.0 is about to come out that uses ESM exclusively,...

I have been looking over this project to see if it would work for me, but it seems to be universally using the outdated `tsconfig.json`. Especially considering [ the new...

So it will auto-update the TOC on save? That would be better, then there is no need for the update TOC code action. Nobody wants a wrong TOC, and having...

Cheers! I will test it when it gets released in a new version. You can close the issue, or I will after I test the fix.

Great work, thanks! Unfortunately I do have a small problem, not sure the best solution. If Marksman creates a TOC, for example: ``` - [health](#health) - [diy](#diy) - [cleaning](#cleaning) ```...

I did try `:History!` many times with your plugin disabled and it works fine.

@folke This bug seems to have changed with latest Neovim/zen-mode: - open fzf history with :History!, open a file - toggle zen mode on - open fzf history with :History!...

I was just looking to see if this feature was possible! Would be great to turn off diagnostics when trying to concentrate. Any update?

You can toggle all buffers diagnostics with: ``` local diagnostics_active = true vim.keymap.set('n', 'd', function() diagnostics_active = not diagnostics_active if diagnostics_active then vim.diagnostic.show() else vim.diagnostic.hide() end end) ```

in Neovim 0.7 `WinEnter` gives: ``` E5108: Error executing lua ...site/pack/paqs/start/zen-mode.nvim/lua/zen-mode/view.lua:209: Failed to switch to window 1000 stack traceback: [C]: in function 'nvim_set_current_win' ...site/pack/paqs/start/zen-mode.nvim/lua/zen-mode/view.lua:209: in function 'fix_hl' ...site/pack/paqs/start/zen-mode.nvim/lua/zen-mode/view.lua:157: in function...