new structure

This commit is contained in:
semblanceofsense 2025-03-07 11:35:40 -07:00
parent 9291bffc59
commit d5ec804494
2 changed files with 5 additions and 16 deletions

View File

@ -1,16 +0,0 @@
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

5
plugin/scout.vim Normal file
View File

@ -0,0 +1,5 @@
echo "nvim-example-lua-plugin.vim: VimL code executing."
function LuaDoItVimL()
echo "nvim-example-lua-plugin.vim LuaDoItVimL(): hello"
endfunction