damanis
damanis
@equalsraf @jgehrig This small patch prevent save and restore main window geometry via nvim-qt.conf. Could you add it to neovim-qt? ``` [General] save_window_position=false ``` ``` diff --git a/src/gui/mainwindow.cpp b/src/gui/mainwindow.cpp index...
@akiyosi QT does have closed issue about inconsistent window state in resizeEvent: [QTBUG-30085](https://bugreports.qt.io/browse/QTBUG-30085?jql=text%20~%20%22resizeevent%20maximize%22). The main reason of undefined window state: 'it depends very much on the underlying windowing system'. The...
@akiyosi I think, this solution should work: - add struct to store current and previous window size ``` struct { current_size; previous_size; maximized: bool; }``` - in `resize` handler copy...
The issue was opened to report the problem, not to revert changes. (Locally I made workaround on same time I found the problem.) When the problem was open, each change...
@lewis6991 Yes, this is isssue due to injections. I installed nvim version `NVIM v0.9.0-dev-1051+g1d8b77da6` that, seems, includes your commit. It tested on JS file with 9000 lines: 7000 lines is...
This file I can't share, it is private in our code. I think, you can use any big JS even with code only, without big object.
@lewis6991 `https://github.com/nodejs/node/blob/main/deps/v8/test/mjsunit/third_party/regexp-pcre/regexp-pcre.js` With my patch works fast, clean nvim-treesitter is slow.
TSInstallInfo: [tsinfo.txt](https://github.com/nvim-treesitter/nvim-treesitter/files/10833560/tsinfo.txt) Treesitter part of lua/plugins.lua ``` if utils.isModuleAvailable("nvim-treesitter") then require'nvim-treesitter.configs'.setup { ensure_installed = "all", sync_install = false, highlight = { enable = true, additional_vim_regex_highlighting = false, }, indent =...
Could you provide `ensure_installed` that I should check?
How to remove already installed parsers?