Move to window with
/win i
where i
is the window number
Now to show the window
/win 1 show
To move between windows
;; global variables | |
(setq | |
global-font-lock-mode 1 | |
inhibit-startup-screen t | |
create-lockfiles nil | |
make-backup-files nil | |
column-number-mode t | |
scroll-error-top-bottom t | |
show-paren-delay 0.5 | |
use-package-always-ensure t |
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/env bash | |
# ~/.osx — http://mths.be/osx | |
# Ask for the administrator password upfront | |
sudo -v | |
# Keep-alive: update existing `sudo` time stamp until `.osx` has finished | |
while true; do sudo -n true; sleep 60; kill -0 "$$" || exit; done 2>/dev/null & |
(defun dotspacemacs/layers () | |
(setq-default | |
dotspacemacs-configuration-layer-path '() | |
dotspacemacs-delete-orphan-packages t | |
dotspacemacs-distribution 'spacemacs | |
dotspacemacs-configuration-layers | |
`((auto-completion :variables | |
auto-completion-return-key-behavior nil |
docker run -it --rm -v /var/run/docker.sock:/var/run/docker.sock -v $PWD:/data eclipse/che start |
docker ps | less -XS |
#!/bin/bash | |
stream_name=$1 | |
while : | |
do | |
shardIds=$(aws kinesis describe-stream --stream-name $stream_name | jq '.StreamDescription.Shards[].ShardId' | tr -d '"') | |
for shard in $shardIds;do | |
iterator=$(aws kinesis get-shard-iterator --stream-name $stream_name --shard-id $shard --shard-iterator-type LATEST | jq '.ShardIterator' | tr -d '"') |
function simpleObjInspect(oObj, key, tabLvl) | |
{ | |
key = key || ""; | |
tabLvl = tabLvl || 1; | |
var tabs = ""; | |
for(var i = 1; i < tabLvl; i++){ | |
tabs += "\t"; | |
} | |
var keyTypeStr = " (" + typeof key + ")"; | |
if (tabLvl == 1) { |