0a515c6eb4c4
more
author | Steve Losh <steve@stevelosh.com> |
---|---|
date | Wed, 26 Feb 2014 12:12:26 -0500 |
parents | dc84e832fade |
children | 898c186130c5 |
branches/tags | (none) |
files | ffignore fish/functions/ms-to-utc.fish gitignore vim/vimrc |
Changes
--- a/ffignore Mon Feb 24 12:42:57 2014 -0500 +++ b/ffignore Wed Feb 26 12:12:26 2014 -0500 @@ -7,3 +7,4 @@ syntax:regex ^./target$ +^./\w+-(client|wire|service)/target$
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/fish/functions/ms-to-utc.fish Wed Feb 26 12:12:26 2014 -0500 @@ -0,0 +1,3 @@ +function ms-to-utc -d "convert epoch milliseconds to UTC" + date -ur (echo -n $argv[1] | sed -e 's/...$//') +end
--- a/gitignore Mon Feb 24 12:42:57 2014 -0500 +++ b/gitignore Wed Feb 26 12:12:26 2014 -0500 @@ -3,3 +3,4 @@ tags1 tags2 tags.bak +*-SCRATCH.*
--- a/vim/vimrc Mon Feb 24 12:42:57 2014 -0500 +++ b/vim/vimrc Wed Feb 26 12:12:26 2014 -0500 @@ -1120,7 +1120,6 @@ " Send to tmux with localleader e au FileType pgsql nnoremap <buffer> <silent> <localleader>e :let psql_tslime_view = winsaveview()<cr>vip"ry:call SendToTmux(@r)<cr>:call winrestview(psql_tslime_view)<cr> - augroup END " }}}