blob: c0e01e9ad27cf5353ca27f8ae67e51bac40e4933 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
import os
dirname = os.path.dirname(__file__)
def eval(cmd):
match cmd:
case 'g:vim_ai_debug_log_file':
return '/tmp/vim_ai_debug.log'
case 'g:vim_ai_roles_config_file':
return os.path.join(dirname, '..', 'resources/roles.ini')
case _:
return None
def command(cmd):
pass
|