diff options
| author | Martin Bielik <martin.bielik@instea.sk> | 2024-12-17 18:43:51 +0100 |
|---|---|---|
| committer | Martin Bielik <martin.bielik@instea.sk> | 2024-12-17 18:43:51 +0100 |
| commit | 8402371e6af33dcf6962ffbc8cd73be0e36f6812 (patch) | |
| tree | 21086a322a0901e9b3ea66e1da318377960808dd /py/roles.py | |
| parent | 44625c9d77f6c44f1a4623402cada772dfaf6f9f (diff) | |
| download | vim-ai-8402371e6af33dcf6962ffbc8cd73be0e36f6812.tar.gz | |
introduced pre-defined default roles
Diffstat (limited to 'py/roles.py')
| -rw-r--r-- | py/roles.py | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/py/roles.py b/py/roles.py index 692ac6c..94bcdb4 100644 --- a/py/roles.py +++ b/py/roles.py @@ -7,13 +7,7 @@ if "PYTEST_VERSION" in os.environ: roles_py_imported = True def load_ai_role_names(command_type): - roles_config_path = os.path.expanduser(vim.eval("g:vim_ai_roles_config_file")) - if not os.path.exists(roles_config_path): - raise Exception(f"Role config file does not exist: {roles_config_path}") - - roles = configparser.ConfigParser() - roles.read(roles_config_path) - + roles = read_role_files() enhance_roles_with_custom_function(roles) role_names = set() |