Greg Hurrell
Greg Hurrell
Instead of (something like): ``` "" " @function ... " " blah function a#b() ``` Be able to write (something like): ``` "" " blah function a#b() ``` Ditto for...
1.3 broke `ack` support. Fixed it in 1.4, but an integration test would have stopped the bug from ever being released. https://twitter.com/wincent/status/823070292280938496
`:Ack` can take fancy Perl-compatible regular expressions. If you then run `:Acks` with the same pattern, Vim may not actually find anything, because its patterns are not Perl-compatible, even with...
Currently working around this with via module augmentation: ```javascript declare module 'csstype' { interface Properties { WebkitAppRegion?: 'drag' | 'inherit' | 'initial' | 'no-drag' | 'none' | 'unset', } }...
Was originally thinking of callbacks created via the `map()` function, for example: https://github.com/wincent/wincent/blob/1556492f8f3993136e07877be0deb3042d63417a/aspects/nvim/files/.config/nvim/lua/wincent/vim/map.lua#L11-L41 But that was removed (migrated to native Neovim API) in fdb20156e1096980b2e9bbb8db35f67dba7b62cb. With that API, it was possible...
https://github.com/nvim-treesitter/nvim-treesitter-textobjects
Example use case: I could mitigate an issue like [this one](https://github.com/justinmk/vim-dirvish/issues/172) by applying a tiny patch to the submodule that overwrites a hard-coded limit that is a script-local (`s:`) variable,...
Setting up a new machine now, and [the list of stuff currently in the Brewfile](https://github.com/wincent/wincent/blob/3aa9426a7aa3f0ccc6a171008cccf993fc1f7651/aspects/homebrew/templates/Brewfile.erb) is just interminably long and probably full of stuff that isn't relevant any more. A...
I think it would be handy if Undux [used `React.forwardRef()`](https://reactjs.org/docs/forwarding-refs.html#forwarding-refs-in-higher-order-components) to make sure that any refs attached to components created using `withStore` got attached to the wrapped component instead of...
Given a comparison like: ``` if l:foo == '' ``` Vint will complain that `==` should be replaced with an explicitly case-(in)sensitive alternative like `==#` or `==?`. It seems like...