diff --git a/autoload/scout.vim b/autoload/scout.vim deleted file mode 100644 index 28ad669..0000000 --- a/autoload/scout.vim +++ /dev/null @@ -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 diff --git a/plugin/scout.vim b/plugin/scout.vim new file mode 100644 index 0000000..5c0efb7 --- /dev/null +++ b/plugin/scout.vim @@ -0,0 +1,5 @@ +echo "nvim-example-lua-plugin.vim: VimL code executing." + +function LuaDoItVimL() + echo "nvim-example-lua-plugin.vim LuaDoItVimL(): hello" +endfunction