Jan Ph. H.
Jan Ph. H.
I think replacinig `rebase -i` in all use cases will be tricky, because fugitive combines diffview.nvim with efficient merge conflict resolving and there is no lua plugin to resolve merge...
BTW: You can now also use `git commit` and `git rebase -i` inside the inbuild shell (for example with vim) and it doesnt have cluttered symbols. I use this every...
diffview.nvim has now https://github.com/sindrets/diffview.nvim#merge-tool, which offers 3-way, 4-way and and single window merge layout: ```txt In addition to the normal :h copy-diffs mappings, there are default mappings provided for jumping...
@wbthomason [Norcallis WIP solution works](https://github.com/norcalli/profiler.nvim), if one calls it for the current file (it wraps all `setup` functions or functions you tell it in the current file it was called)....
Unfortunately there is no standard for coverage reports or interface to generate those similar (or reusing) the debug adapter protocol. The most reliable solution is using [kcov](https://github.com/SimonKagstrom/kcov) by parsing the...
Newer programming languages provide one tool for the linting. Older programming languages have [many](https://clang.llvm.org/extra/clang-tidy/). Is the goal to simplify or give any sort of reference on this?
I would suggest to keep linter and fixer separate programs as the fixer rewrites the file with the possibilities to mess up your files. (So I prefer to invoke simple...
@Julian Is there a reason why you did not create a PR yet to `minimal.vim` ? Issue 11362 sounds like it requires logging or tracing.
Yes, https://github.com/nvim-lua/plenary.nvim/blob/master/tests/minimal_init.vim You can add it as comment, since that is the place everybody will look to adapt their minimal vimrc.
If you want something simpler, you can also code your own modes for this with [hydra.nvim](https://github.com/anuvyklack/hydra.nvim)