MERGINGWTF
This commit is contained in:
commit
52b880fa0b
2 changed files with 25 additions and 4 deletions
|
|
@ -5,6 +5,7 @@ alias ta "tmux attach"
|
|||
alias dustinswan "mosh dustinswan@dustinswan.org"
|
||||
set -x EDITOR "vim"
|
||||
set -x TERM "screen-256color"
|
||||
set -x BROWSER "open"
|
||||
|
||||
# PATH
|
||||
set -x PATH /usr/local/bin /usr/local/sbin $PATH# Homebrew
|
||||
|
|
|
|||
28
vimrc
28
vimrc
|
|
@ -233,10 +233,6 @@ nnoremap <leader>l :ls<cr>:b<space>
|
|||
"let g:ctrlp_max_files = 10000
|
||||
let g:ctrlp_clear_cache_on_exit = 0
|
||||
|
||||
" Workflowish stuff. Search for #todo
|
||||
nnoremap <silent><leader>T :vimgrep /\v^\s*\*+.*#todo.*/i %<cr>:copen<cr>:30wincmd _<cr>
|
||||
nnoremap <silent><leader>TT /\v^\s*\*+.*#todo.*/i<cr>
|
||||
|
||||
" Vimux stuff
|
||||
nnoremap <silent><leader><leader>vp :VimuxPromptCommand<cr>
|
||||
nnoremap <silent><leader><leader>vl :VimuxRunLastCommand<cr>
|
||||
|
|
@ -278,3 +274,27 @@ nnoremap <leader>hi :HdevtoolsInfo<cr>
|
|||
|
||||
" Vim-move
|
||||
let g:move_key_modifier = 'C'
|
||||
|
||||
" Open URLs
|
||||
ruby << EOF
|
||||
def open_uri
|
||||
re = %r{(?i)\b((?:[a-z][\w-]+:(?:/{1,3}|[a-z0-9%])|www\d{0,3}[.]|[a-z0-9.\-]+[.][a-z]{2,4}/)(?:[^\s()<>]+|\(([^\s()<>]+|(\([^\s()<>]+\)))*\))+(?:\(([^\s()<>]+|(\([^\s()<>]+\)))*\)|[^\s`!()\[\]{};:'".,<>?«»“”‘’]))}
|
||||
|
||||
line = VIM::Buffer.current.line
|
||||
|
||||
if url = line[re]
|
||||
system("open", url)
|
||||
VIM::message(url)
|
||||
else
|
||||
VIM::message("No URI found in line.")
|
||||
end
|
||||
end
|
||||
EOF
|
||||
|
||||
if !exists("*OpenURI")
|
||||
function! OpenURI()
|
||||
:ruby open_uri
|
||||
endfunction
|
||||
endif
|
||||
|
||||
nnoremap <leader>b :call OpenURI()<CR>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue