(C-x means ctrl+x, M-x means alt+x)
The default prefix is C-b. If you (or your muscle memory) prefer C-a, you need to add this to ~/.tmux.conf
:
[user] | |
name = Pavan Kumar Sunkara | |
email = [email protected] | |
username = pksunkara | |
[init] | |
defaultBranch = master | |
[core] | |
editor = nvim | |
whitespace = fix,-indent-with-non-tab,trailing-space,cr-at-eol | |
pager = delta |
// -*- coding: utf-8 -*- | |
// 参考: 床井研究室 - (4) シェーダの追加 | |
// http://marina.sys.wakayama-u.ac.jp/~tokoi/?date=20120909 | |
package main | |
import ( | |
gl "github.com/chsc/gogl/gl33" | |
"github.com/jteeuwen/glfw" | |
"log" | |
"unsafe" |
var Slider = function(options){ | |
var bar, | |
slider, | |
toggle, | |
percent, | |
that = this; | |
function _init(options){ | |
_construct(); |
#!/bin/sh | |
# To enable this hook, rename this file to "pre-commit". | |
############################################################################### | |
# https://gist.github.com/stuntgoat/8800170 | |
# Git pre-commit hook for finding and warning about Python print | |
# statements. | |
# |
orgChart = { | |
addNewEmployee: function(){ | |
var employeeDetail = this.getEmployeeDetail(); | |
employeeDetail.on("cancel", () => { | |
// the modal was cancelled... | |
// go back to previous UI / step / whatever | |
}); | |