hinell

Results 169 comments of hinell

That's going to be a major change.... You don't seem use any versioning at all in this project. I would urge you to look at my nvim plugins to see...

>should both `initializationOptions` and workspace settings be supported or only the latter? What do you mean by `workspace settings`? > server would have to watch We aren't in hurry. This...

@rchl I think both types of settings should be supported. They don't seem to be different.

This is not just per dart. I'm having performance issues with `nvim_treesitter#foldexpr()` as well. `foldexpr` is called like crazy, slowing down everything. * NVIM v0.10.0-dev-ac1c23442f * nvim-treesitter: 9c4fc86b67c1d68141cef57846d24cbee9b74fb0 ``` FUNCTIONS...

@justinmk Currently nvim can catch custom sequences. The problem is that not every front-end sends them. Xterm or Konsole (uses PTY) doesn't send them by deafult. it can be enabled...

> Is there some reason the following mapping does not work for you? @jgehrig It works, but I want separate bindings for ceratin commands, e.g.: ```vim ... " deletes space-separated...

>feel free to open a Pull Request! @jgehrig Hi, thanks! I will consider to do this at some point for sure. We have had this feature in QT apps running...

@equalsraf I agree, the native [`mksession`](https://neovim.io/doc/user/starting.html#views-sessions) or any other command may be utilized by users via `init.lua` configuration to manage session. This command saves `Session.vim` file. >... Instead of trying...

@equalsraf Yup. Passing `sid` (session Id) is important. The system may keep track of different sessions of different users. upd: currently, for `xterm` in KDE I've session restored automatically. I...

@kevintraver I think the point of the OP is to ALWAYS keep a diffview window and focus on it whenever the `:DiffviewOpen` is run in given `CWD`. For several different...