I hereby claim:
- I am yardnsm on github.
- I am yardnsm (https://keybase.io/yardnsm) on keybase.
- I have a public key whose fingerprint is 02D9 0D67 572B E176 BC9D A1CB 7A77 9526 D547 E877
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/env bash | |
info() { | |
local bold=$(tput bold) | |
local normal=$(tput sgr0) | |
printf "${bold}$1:${normal}\\t $2\\n" | |
} | |
green() { |
-- vim-closer replacement | |
-- https://github.com/rstacruz/vim-closer/blob/master/autoload/closer.vim | |
local get_closing_for_line = function (line) | |
local i = -1 | |
local clo = '' | |
while true do | |
i, _= string.find(line, "[%(%)%{%}%[%]]", i + 1) | |
if i == nil then break end |