ELLIOTTCABLE

Results 177 comments of ELLIOTTCABLE

I love this. I'm right there with @thejameskyle — if this repo is for a specification for a *syntax* and *semantics* to go with that syntax, it's fairly easy to...

I've written on this elsewhere, but relating to my post on #9 — I'd *really* like to see “links” in source-code documentation devolve to their absolute minimum format. That is,...

Probably obviously from the above, I'm also personally partial to implicit support for postfix-[declensions](https://en.wikipedia.org/wiki/Declension), most especially the English plural — I find typing `` `Source`s `` much more natural than...

This looks pretty cool. Could you provide a quick example of how you're using it, in practice?

I'm running into this same unfortunate behavior. +1

I'm with @DallanQ on this one. Let's keep your workload as low as possible, to keep this fork up-to-snuff as long as possible. It's already starting to quiet down, and...

@lifepillar Why not include @auwsmit's solution as an option? Speaking of: @auwsmit, may I include your answer in a related plugin? Care to release it under a license, so I...

:+1: Would love this for `vim-gitgutter`. Using this, currently, but lose it when I invert the background: ``` :highlight clear SignColumn :highlight link SignColumn CursorColumn ```

+1 I tried adding `hi! link SignColumn Background` to my `.vimrc`; but it doesn't seem to have worked; I still get a fugly-ass grey gutter on new vims. I even...

Here's an improved version, combining @ShengYun's observation, and @airblade's about `LineNr`: ``` vim " ... until https://github.com/altercation/vim-colors-solarized/pull/62 fun! FixSignColumn() highlight clear SignColumn highlight link SignColumn LineNr endfun call FixSignColumn() au...