Initial commit

This commit is contained in:
semblanceofsense 2025-03-07 11:23:50 -07:00
commit 9291bffc59

16
autoload/scout.vim Normal file
View 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