This is roughly the same test run in both casper and nightwatch.
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
let t:dko_fixing = 0 | |
let t:dko_moving = 0 | |
let t:dko_correcting = 0 | |
let t:dko_last_window = winnr() | |
" Remember what window you came from when you leave a normal buffer | |
function! s:DKO_Remember_Window() | |
if &buftype != '' | return | endif |
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
scriptencoding UTF-8 | |
" ============================================================================ | |
" EasyClip ring | |
" Requires vim-easyclip installed | |
" Press <Leader>cr to get a pop-up menu to select a yank | |
" ============================================================================ | |
function! YanksToArray() | |
let yanks_array = [] |
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
" after/ftplugin/markdown.vim | |
setlocal comments=fb:*,b:-,fb:+,n:> commentstring=>\ %s | |
setlocal formatoptions+=r |
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
/** | |
* gulp js | |
*/ | |
/*eslint-env node, es6*/ | |
'use strict'; | |
const fs = require('fs'); | |
const path = require('path'); |
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
/*eslint-env es6*/ | |
// ES6 generator function | |
var anonymousGeneratorFunctionExpression = function* (arg1, arg2) { | |
}; | |
var namedGeneratorFunctionExpression = function* namedGenerator(arg1, arg2) { | |
}; |
I hereby claim:
- I am davidosomething on github.
- I am davidosomething (https://keybase.io/davidosomething) on keybase.
- I have a public key whose fingerprint is 54A4 98C8 429C C549 08A0 8F30 20DD 3828 8CA0 D3F4
To claim this, I am signing this object:
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
ldc -O -m64 -Isrc -c src/atk/HyperlinkImplIF.d -ofsrc/atk/HyperlinkImplIF.o | |
ldc -O -m64 -Isrc -c src/atk/NoOpObjectFactory.d -ofsrc/atk/NoOpObjectFactory.o | |
ldc -O -m64 -Isrc -c src/atk/EditableTextIF.d -ofsrc/atk/EditableTextIF.o | |
ldc -O -m64 -Isrc -c src/atk/Socket.d -ofsrc/atk/Socket.o | |
ldc -O -m64 -Isrc -c src/atk/ComponentIF.d -ofsrc/atk/ComponentIF.o | |
ldc -O -m64 -Isrc -c src/atk/StreamableContentT.d -ofsrc/atk/StreamableContentT.o | |
ldc -O -m64 -Isrc -c src/atk/NoOpObject.d -ofsrc/atk/NoOpObject.o | |
ldc -O -m64 -Isrc -c src/atk/GObjectAccessible.d -ofsrc/atk/GObjectAccessible.o | |
ldc -O -m64 -Isrc -c src/atk/ActionT.d -ofsrc/atk/ActionT.o | |
ldc -O -m64 -Isrc -c src/atk/ValueT.d -ofsrc/atk/ValueT.o |
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
{ | |
"ecmaVersion": 6, | |
"libs": [ | |
"browser", | |
"jquery" | |
], | |
"loadEagerly": [ | |
"**/*.js" | |
], | |
"dontLoad": [ |
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
--- Get panes that are on the same axis as the tab's active pane | |
---@param axis 'y'|'x' | |
---@param tab table | |
---@return table siblings | |
local function get_axis_siblings(axis, tab) | |
local initial = tab:active_pane() | |
local siblings = { initial } | |
local prev_dir = axis == "x" and "Left" or "Up" | |
local next_dir = axis == "x" and "Right" or "Down" |
OlderNewer