木漏れ日
木漏れ日
`set number` displays absolute line numbers in the UI, but when I try to jump to a specific line using e.g. `20G` to jump to the 20th line (as one...
Hello, I noticed some issues when trying to run cquery as an LSP backend in neovim on macOS; the exact platform is below. ``` (i) uname -a Darwin yangmillstheory.attlocal.net 18.0.0...
I use the following mappings: ```vim " easymotion map s (easymotion-sl) map f (easymotion-fl) map F (easymotion-Fl) map t (easymotion-tl) map T (easymotion-Tl) map b (easymotion-bl) map e (easymotion-el) map...
For reference, I mean `s:GroupingAlgorithmSCTree` https://github.com/easymotion/vim-easymotion/blob/342549e7a1e5b07a030803e0e4b6f0415aa51275/autoload/EasyMotion.vim#L805-L892 The algorithm is correct, but should be cleaned up and refactored, because: * there are [unused variables](https://github.com/easymotion/vim-easymotion/pull/359/files#diff-797823d9d991e966c5cdefddb0fae948L859), causing confusion * [this call to `reverse`](https://github.com/easymotion/vim-easymotion/blob/342549e7a1e5b07a030803e0e4b6f0415aa51275/autoload/EasyMotion.vim#L812)...
There are tests in the `t/` directory; I have no clue how to run them against a revision.
Closes #358; see that issue for motivation. I'd also like to squash merge this, since we don't need the commit history on `master`, and I'm fine keeping this branch on...
Thank you for the amazing work. Is there a way to color `else` the same as `try`, `catch` and `finally` when in the context of a "try-catch" block? 
Given `baaa`, swap 'b' from the end of the line. Should be able to repeat until 'b' is at the front of the line. Even if there are multiple occurrences...
```vim function! LightlineAleWarning() let counts = ale#statusline#Count(bufnr('')) let n_warnings = counts.style_warning + counts.warning + counts.info return counts.total == 0 || n_warnings == 0 \ ? '' \ : printf('%d ◆',...