diff options
| author | Martin Bielik <mx.bielik@gmail.com> | 2023-12-23 17:25:09 +0100 |
|---|---|---|
| committer | Martin Bielik <mx.bielik@gmail.com> | 2023-12-23 17:25:09 +0100 |
| commit | 4692eec84b5aa9d95256bef515bd1d17471e5570 (patch) | |
| tree | 808fb5124ee95c5d919593da57d939f2100fe8f7 /py | |
| parent | bf1f961ccca7c8ee2da2ad6d066e83e3ec080311 (diff) | |
| download | vim-ai-4692eec84b5aa9d95256bef515bd1d17471e5570.tar.gz | |
import vim before utils, fixes #43
Diffstat (limited to 'py')
| -rw-r--r-- | py/chat.py | 2 | ||||
| -rw-r--r-- | py/complete.py | 2 |
2 files changed, 4 insertions, 0 deletions
@@ -1,3 +1,5 @@ +import vim + # import utils plugin_root = vim.eval("s:plugin_root") vim.command(f"py3file {plugin_root}/py/utils.py") diff --git a/py/complete.py b/py/complete.py index ede0aea..debe275 100644 --- a/py/complete.py +++ b/py/complete.py @@ -1,3 +1,5 @@ +import vim + # import utils plugin_root = vim.eval("s:plugin_root") vim.command(f"py3file {plugin_root}/py/utils.py") |