commit 9291bffc5907be9f7eab4dad6249d5c3e9dad250 Author: semblanceofsense Date: Fri Mar 7 11:23:50 2025 -0700 Initial commit diff --git a/autoload/scout.vim b/autoload/scout.vim new file mode 100644 index 0000000..28ad669 --- /dev/null +++ b/autoload/scout.vim @@ -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