Initial commit
This commit is contained in:
commit
9291bffc59
16
autoload/scout.vim
Normal file
16
autoload/scout.vim
Normal file
@ -0,0 +1,16 @@
|
||||
python3 << EOF
|
||||
import requests, json
|
||||
|
||||
request_headers = { "accept": "application/json" }
|
||||
request_base_url = ""
|
||||
request_url_options = "?redirect=true"
|
||||
|
||||
def submit_match_scout():
|
||||
b = vim.buffers[1]
|
||||
for i in range(0, len(b)):
|
||||
print b[i]
|
||||
EOF
|
||||
|
||||
function! scout#PrintLines()
|
||||
python3 submit_match_scout()
|
||||
endfunction
|
Loading…
Reference in New Issue
Block a user