From 9291bffc5907be9f7eab4dad6249d5c3e9dad250 Mon Sep 17 00:00:00 2001
From: semblanceofsense <semblanceofsensegaming@gmail.com>
Date: Fri, 7 Mar 2025 11:23:50 -0700
Subject: [PATCH] Initial commit

---
 autoload/scout.vim | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)
 create mode 100644 autoload/scout.vim

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