John Gehrig

Results 38 issues of John Gehrig

We should have UnitTest coverage for this feature. Consider covering the following: - Does a new window actually open? - Are `--server` arguments forwarded correctly? - Are `--nvim` arguments forwarded...

We should work on providing better documentation for the configuration options. See: https://github.com/equalsraf/neovim-qt/wiki/Configuration-Options

**TODO Tag in Code!** See `app.cpp`: `std::vector s_windows;` This code throws a Clazy warning because the CTOR is non-trivial. Here is an alternative: ``` std::vector& GetWindowList() noexcept { static `std::vector...

See: https://github.com/equalsraf/neovim-qt/blob/84721b6d5935bbd1b747e5d0aae31ba046883ded/src/gui/shell.cpp#L291-L292 This value should be parameterized.

@kierun Creating a bug here so as to not spam the large thread. From #166: >Ah, I see. The runtime was wrong, installed and I can see ligatures. > >screenshot...

**Issue #771:** Operator Mono Font Not Working The Operator Mono font uses a different encoding scheme than Fira Code. For Fira Code, each character maps has a glyph in QGlyphRun....

Adds test coverage for QWheelEvent to Neovim input string conversion. There have been a handful of scrolling related issues lately: #784 #785 #696 #630 Following the pattern we used to...

This is a first-pass at adding support for the Neovim `ext_cmdline` feature. ![image](https://user-images.githubusercontent.com/11207308/65013172-03d7d700-d8e8-11e9-98a2-8c185ea5ec66.png) **Outstanding Issues:** - [ ] Test for Mac OS X. - [ ] Test for Windows. -...

Currently `GuiFont` and `guifont` do not support `:s`. See `:help guifont`: ``` For the Win32 GUI *E244* *E245* - takes these options in the font name: hXX - height is...

The cursor rendering logic isn't correct for some wide characters: ![image](https://user-images.githubusercontent.com/11207308/91670062-eb0c0580-eae7-11ea-933b-4ad6781dc35e.png) **Repro Steps:** 1. Using Windows 10 + neovim-qt `master` 2. `nvim-qt -- -u NONE` 3. `:GuiFont` reports `Consolas:h11` 4....