I hereby claim:
- I am chrissexton on github.
- I am chrissexton (https://keybase.io/chrissexton) on keybase.
- I have a public key whose fingerprint is EBD6 A39C F414 C477 F176 1F94 D1BB F1EB 8B8C C077
To claim this, I am signing this object:
| # Enable a wq action, we will bind the palette to ':' for access to this | |
| atom.workspaceView.command 'vim-mode-ext:wq', '.editor', -> | |
| editor = atom.workspaceView.getActiveView() | |
| editor.getEditor().save() | |
| editor.trigger('core:close') |
| package main | |
| import ( | |
| "flag" | |
| "fmt" | |
| "time" | |
| ) | |
| func main() { | |
| timeFmt := "2006-1" |
I hereby claim:
To claim this, I am signing this object:
| Result: 1 | |
| Items { | |
| TemplateId: "BADGE_BATTLE_ATTACK_WON" | |
| Badge { | |
| BadgeType: BADGE_BATTLE_ATTACK_WON | |
| BadgeRanks: 4 | |
| Targets: "\nd\350\007" | |
| } | |
| } | |
| Items { |
| ackage main | |
| import "fmt" | |
| func main() { | |
| fmt.Println("Hello, mccoyst!") | |
| } |
| set nocompatible " be iMproved | |
| let iCanHazPlugged=1 | |
| let vim_plug_file=expand("~/.vim/autoload/plug.vim") | |
| if !filereadable(vim_plug_file) | |
| echo "Installing vim-plug" | |
| echo "" | |
| silent !mkdir -p ~/.vim/autoload | |
| silent !curl -fLo ~/.vim/autoload/plug.vim https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim | |
| let iCanHazPlugged=0 |
Welcome to my old machine. It served me well and I hope it serves you well too. I wanted to write a few tips that many new Mac owners don't seem to realize. These are notes to help you not miss out. Because if you just treat it like any other computer, you are both missing the point and going to look like a fool.
Keyboard>Modifier keys and switching caps lock to being escape. It solves the only real trouble with the touchbar| #!/bin/bash -e | |
| # A SHORT DESCRIPTION OF YOUR SCRIPT GOES HERE | |
| # USAGE: | |
| # DESCRIPTION OF ENV VARS HERE | |
| ############################################################################### | |
| set -e # exit on command errors (so you MUST handle exit codes properly!) | |
| set -o pipefail # capture fail exit codes in piped commands | |
| #set -x # execution tracing debug messages | |
| # Get command info |