Gregory Anders

Results 250 comments of Gregory Anders

Supporting a count modifier to specify window size is a good idea so long as it's not too complex to implement (I don't believe it should be).

> With the improvements around distinguishing ambiguous keys in the 0.7 release, how much would need to be done to support the first level of the kitty keyboard protocol ("disambiguate...

To second what @justinmk said, I would like to propose that the EditorConfig specification be amended in one of two ways: 1. Clarify and enforce * The wording of the...

Unfortunately, I did not try to build scikit (or native scipy) as that is not a requirement on the project for which I had to build scipy. This recipe is...

> On Dec 7, 2020, at 7:29 PM, Joel Winarske wrote: > >  > dunfell bbappend for lapack required these patches to build: > https://gitlab.kitware.com/cmake/cmake/-/merge_requests/4404/diffs?commit_id=8e2683cf6db078b33cf0d5162c1a72b6f553b0be > > — >...

I implemented a patch for this here: https://github.com/neovim/neovim/pull/15442 But there were concerns about backward compatibility with plugins. If somebody else wants to pick up that PR where I left off...

`vim.loop.exepath` is not equivalent to Vim script's `exepath`. The former returns the full path to the current executable (i.e. nvim) while the latter takes an argument and returns the path...

Is this something that needs to be "fixed" in Neovim core at all? I agree with [this comment](https://github.com/neovim/neovim/issues/16572#issuecomment-989432803), this should be addressed using the terminal's setting itself or with a...

The following accomplishes the request in this issue: ```lua local modified = false vim.api.nvim_create_autocmd({'UIEnter', 'ColorScheme'}, { callback = function() local normal = vim.api.nvim_get_hl(0, { name = 'Normal' }) if normal.bg...

I have to admit that after testing this it actually is quite nice. I retract my statement from earlier (or at least, lessen the intensity of my position). I'm not...