outdated, someone else is updating the list now -> https://gist.github.com/Fobxx/107e2bad2bf7312cd49431c696aac912
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Directive, Input, HostListener, Renderer, ElementRef } from '@angular/core'; | |
@Directive({ selector: '[hoverClass]' }) | |
export class HoverClassDirective { | |
@Input() | |
hoverClass: string; | |
constructor( | |
public elementRef: ElementRef, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module type CELL = sig | |
type 'a cell | |
type 'a exp | |
val return : 'a -> 'a exp | |
val (>>=) : 'a exp -> ('a -> 'b exp) -> 'b exp | |
val cell : 'a exp -> 'a cell exp | |
val get : 'a cell -> 'a exp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* nobraces.ci: Python-style indentation for C | |
By Ben Hoyt, 22 Sep 2007, http://benhoyt.com/ | |
Basically you just write C code, indenting it like you would anyway, | |
but use colons after control flow statements like in Python. Oh, and | |
leave off all those nasty end-of-line semicolons. | |
Okay, so it's a joke. Mostly. :-) Inspired by the Python parallel, | |
Tim Hatch's "pybraces" (C-style braces in Python): | |
http://timhatch.com/projects/pybraces/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
plugin | |
naming convention: name_of_plugin.vim | |
these files are sourced for all file types | |
doc | |
naming convention: name_of_plugin.txt | |
these files document the functionality of a plugin | |
color | |
naming convention: name_of_colorscheme.vim |