Version 0.3.0, move large amount of code to Puppy
This commit is contained in:
parent
76d20774a5
commit
f9737dbdd8
169 changed files with 6463 additions and 43862 deletions
0
pappyproxy/interface/repeater/__init__.py
Normal file
0
pappyproxy/interface/repeater/__init__.py
Normal file
1607
pappyproxy/interface/repeater/repeater.py
Normal file
1607
pappyproxy/interface/repeater/repeater.py
Normal file
File diff suppressed because it is too large
Load diff
20
pappyproxy/interface/repeater/repeater.vim
Normal file
20
pappyproxy/interface/repeater/repeater.vim
Normal file
|
@ -0,0 +1,20 @@
|
|||
if !has('python')
|
||||
echo "Vim must support python in order to use the repeater"
|
||||
finish
|
||||
endif
|
||||
|
||||
" Settings to make life easier
|
||||
set hidden
|
||||
|
||||
let s:pyscript = resolve(expand('<sfile>:p:h') . '/repeater.py')
|
||||
|
||||
function! RepeaterAction(...)
|
||||
execute 'pyfile ' . s:pyscript
|
||||
endfunc
|
||||
|
||||
command! -nargs=* RepeaterSetup call RepeaterAction('setup', <f-args>)
|
||||
command! RepeaterSubmitBuffer call RepeaterAction('submit')
|
||||
|
||||
" Bind forward to <leader>f
|
||||
nnoremap <leader>f :RepeaterSubmitBuffer<CR>
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue