rbong
rbong
When the termguicolors setting is enabled, default ANSI colors are used by default in Vim. Colors can be set in Vim similarly to neovim as of this merged PR: https://github.com/vim/vim/pull/2747...
This adds support for identifying styled components imports using `_interopRequiredDefault` and calls to styled components that use sequence expressions (ex. `(0, _styled)('div')()`). This should improve support for MUI + Next...
Imports which use `_interopRequireDefault` are not identified. ```js // not identified const styled = _interopRequireDefault(require("styled-components")); ``` Calls using `SequenceExpression`s are also not identified. ```js const Test = (0, styled)('div')(); ```
I'm working on a large disassembly project and I'd like to be able to share it and add comments, but I can't include the disassembled binary with anything I share...
JSDoc standard: >All symbols in the file are assumed to be members of the module unless documented otherwise. This does not happen. Mentioned in #234 but there is no specific...
I am assuming Neovim is partially supported because [this issue](https://github.com/kana/vim-vspec/issues/50) was resolved, let me know if that's incorrect. I have the following tests: ```vim runtime! plugin/fugitive.vim describe 'vspec' it 'test'...
Flog v2
Requests for changes in v2 and feedback on planned changes welcome. Major changes: * Rewrite in vim9script, subsequent speed improvements * Rewrite performance-sensitive portions of Flog in Lua * Flog...
See: https://github.com/rbong/vim-flog/pull/78 ~~As a workaround, see [this user command](https://github.com/rbong/vim-flog/wiki/Custom-Commands#enable-diff-links-for-git-diff-subcommands).~~ (doesn't work)
Update 2020/11/15: please start at the newest comments at the bottom of the page if you're interested in the latest developments on speeding up Flog --- Flog takes a long...
I'd like to request allowing passing the full value of the ~~OpenAPI~~ Service Management config as an environment variable, rather than just setting the path to the config as an...