Skip to content

Instantly share code, notes, and snippets.

" Vim filetype plugin file
" Language: julia
autocmd! BufLeave,FocusLost * nested silent! update
nmap <buffer> <silent> <space> <esc>:call Send_to_iterm()<cr>j
noremap <leader>ae <esc>:w<cr>:call Send_input_file_to_iterm()<cr>
noremap <leader>rf <esc>:w<cr>:call New_julia_repl()<cr>
noremap <leader>pd <esc>:w<cr>:call Get_paragraph()<cr>
@ggarza
ggarza / vcsupdate
Created August 7, 2015 02:03
Small python script to update vcs repos
#!/usr/bin/env python
#from http://djangosnippets.org/snippets/844/
import os
import os.path
from subprocess import call
if __name__ == "__main__":
apps_dir = os.path.abspath('.')
for app_name in os.listdir(apps_dir):