diff options
| author | Martin Bielik <martin.bielik@instea.sk> | 2024-12-12 23:10:30 +0100 |
|---|---|---|
| committer | Martin Bielik <martin.bielik@instea.sk> | 2024-12-12 23:10:30 +0100 |
| commit | 3cdf03bee337918088e796e484a4a7c985811ad0 (patch) | |
| tree | a9b2200ad1d9a637b5800282bed776cee8833258 /py/complete.py | |
| parent | c9bc248be2af4b514cef067299255428c9576ef6 (diff) | |
| download | vim-ai-3cdf03bee337918088e796e484a4a7c985811ad0.tar.gz | |
fixed complete command roles after refactoring
Diffstat (limited to 'py/complete.py')
| -rw-r--r-- | py/complete.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/complete.py b/py/complete.py index 0580257..8d85581 100644 --- a/py/complete.py +++ b/py/complete.py @@ -4,7 +4,7 @@ import vim plugin_root = vim.eval("s:plugin_root") vim.command(f"py3file {plugin_root}/py/utils.py") -prompt, config = load_config_and_prompt() +prompt, config = load_config_and_prompt('complete') config_options = config['options'] config_ui = config['ui'] |