Ryan Nevius

Results 8 comments of Ryan Nevius

Just bumping this issue with the results of my profiler: | | `vim-one` load time | |--|--| | Vim | 233.36 ms | Neovim | 82.64 ms |

This would be nice to have. I have implemented something like the following in my own project, but it's not ideal: ```python import tempfile from aioapns import APNs keyfile =...

@sbeckeriv Have you set up terminfo for Kitty? What is the output of `echo $TERMINFO`?

@sbeckeriv Have you set up terminfo for Kitty? What is the output of `echo $TERMINFO`?

@hillaryfraley this may be an Adobe Acrobat bug. The generated HTML is correct...As you noticed, it looks like Acrobat is interpreting `\n` newline characters incorrectly. Unless we look for an...

@hillaryfraley wkhtmltopdf isn't a good fit (as far as I can tell)...I did some tests and internal links / Table of Contents are completely broken. There are also some weird...

I define a keymap to call `require("onedark").toggle()`: ```lua vim.keymap.set('n', 'tc', 'lua require("onedark").toggle()') ``` And then add `toggle_style_list` to the plugin options. I use lazy: ```lua { 'navarasu/onedark.nvim', priority = 1000,...