August 2008
5 links saved this month.
vim.org
map <silent> H :<C-U>call HContext()<CR> map <silent> L :<C-U>call LContext()<CR> func! HContext() let moved = MoveCursor("H") if !moved && line('.') != 1 exe "normal! " . "\<pageup>H" endif endfunc func! LContext() let moved = MoveCursor("L") if !moved && line('.') != line('$') exe "normal! " . "\<pagedown>L" endif endfunc func! MoveCursor(key) let cnum = col('.') let lnum = line('.') let wline = winline() exe "normal! " . v:count . a:key let moved = cnum != col('.') || lnum != line('.') || wline != winline() return moved endfunc
cygwin.com
cat <<EOF HOME is $HOME the date is `date` the date is $(date) EOF cat <<"EOF" HOME is $HOME the date is `date` the date is $(date) EOF cat <<\EOF HOME is $HOME the date is `date` the date is $(date) EOF
linuxjournal.com
In this post I'll show you how to create a self extracting bash script to automate the installation of files on your system.
alistapart.com
Development of the Fahrner Image Replacement technique and its analogues is moving faster than the destruction of the Berlin Wall.




