This file has been truncated, but you can view the full file.
This file contains hidden or 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
2015-06-23 09:38:11,419 [DEBUG @ msgpack_stream.py:send:36] 5435 - sent [0, 1, b'vim_get_api_info', ()] | |
2015-06-23 09:38:11,420 [DEBUG @ base.py:send:113] 5435 - Sending 'b'\x94\x00\x01\xc4\x10vim_get_api_info\x90'' | |
2015-06-23 09:38:11,420 [DEBUG @ base.py:run:138] 5435 - Entering event loop | |
2015-06-23 09:38:11,420 [DEBUG @ msgpack_stream.py:_on_data:57] 5435 - waiting for message... | |
2015-06-23 09:38:11,420 [DEBUG @ msgpack_stream.py:_on_data:59] 5435 - received message: [0, 1, b'poll', []] | |
2015-06-23 09:38:11,420 [DEBUG @ async_session.py:_on_request:77] 5435 - received request: b'poll', [] | |
2015-06-23 09:38:11,420 [DEBUG @ msgpack_stream.py:_on_data:57] 5435 - waiting for message... | |
2015-06-23 09:38:11,420 [DEBUG @ msgpack_stream.py:_on_data:62] 5435 - unpacker needs more data... | |
2015-06-23 09:38:11,420 [DEBUG @ msgpack_stream.py:_on_data:57] 5435 - waiting for message... | |
2015-06-23 09:38:11,421 [DEBUG @ msgpack_stream.py:_on_data:59] 5435 - received message: [1, 1, None, [1, {b'types': {b'Window': {b'id': 1 |
This file contains hidden or 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
" ==VimperatorColorSchema== | |
" name: Solarized Light | |
" ==/VimperatorColorSchema== | |
" | |
hi Bell border: none; background-color: #586E75; | |
hi Boolean color: #DC322F; | |
hi CmdLine background: #EEE8D5; color: #586E75; transition: all 0.25s; | |
hi CmdLine>* font-family: monospace; | |
hi CmdOutput white-space: pre; |
This file contains hidden or 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
// {{{ Information | |
let INFO = xml` | |
<plugin name="buftabs" version="1.0" | |
href="" | |
summary="Buftabs: show the tabbar in the statusline" | |
xmlns="http://vimperator.org/namespaces/liberator"> | |
<author email="[email protected]">s2marine</author> | |
<license href="">GPLv3</license> | |
<p> | |
This is a fork from Lucas de Vries's buftabs (https://github.com/GGLucas/vimperator-buftabs). |
This file contains hidden or 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
/// <reference path='./es6-collections.d.ts' /> | |
declare var require: any | |
require('es6-collections') | |
class Caller<T> { | |
private callers: T[] = [] | |
constructor(init?: T) { | |
if (init !== undefined) this.callers.push(init) | |
} | |
withValue(t: T): Function { |
This file contains hidden or 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
function inject(...injectionKeys : Array<string>) { | |
return function decoratorFactory(target : Object|Function, decoratedPropertyName? : string) : void { | |
let targetType : Function; | |
let injectionPoint : InjectionPoint; | |
// Decorator applied to Class (for Constructor injection). | |
if (typeof target === 'function' && decoratedPropertyName === undefined) { | |
targetType = target; | |
injectionPoint = new ConstructorInjectionPoint(injectionKeys); | |
} |
This file contains hidden or 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
let s:enabled_options = [ | |
\ 'target', 'emitDecoratorMetadata', 'experimentalDecorators', 'module', | |
\ 'noImplicitAny', 'rootDir', 'noEmit', 'allowSyntheticDefaultImports', | |
\ 'noImplicitReturn', 'allowUnreachableCode', 'allowUnusedLabels' | |
] | |
function! neomake#makers#ft#typescript#tsc() | |
let l:tsconfig = findfile('tsconfig.json', '.;') | |
if len(l:tsconfig) | |
let true = 1 |
This file contains hidden or 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
<!-- | |
postMessage(navigator.appName); | |
/* | |
--> | |
<!doctype html> | |
<title>navigator.appName</title> | |
<script src="/resources/testharness.js"></script> | |
<script src="/resources/testharnessreport.js"></script> | |
<div id=log></div> | |
<script> |
This file contains hidden or 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
/// <reference path='./typings/tsd.d.ts' /> | |
import 'reflect-metadata' | |
type _ = {} | |
type ClassN<N, T> = { new (...a: N[]): T } | |
type FN8<A, B, C, D, E, F, G, H, R> = (a?: A, b?: B, c?: C, d?: D, e?: E, f?: F, g?: G, h?: H) => R | |
type CLS8<A, B, C, D, E, F, G, H, R> = { new (a?: A, b?: B, c?: C, d?: D, e?: E, f?: F, g?: G, h?: H): R} |
This file contains hidden or 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
// webpack.config.js | |
module.exports = { | |
entry: { | |
'test': './test', | |
}, | |
output: { | |
filename: 'output.js', | |
}, | |
module: { | |
loaders: [ |