Add config to control shell integration per host

This commit is contained in:
Kovid Goyal
2022-02-27 13:15:53 +05:30
parent 59f656e3ca
commit c6f37afeff
4 changed files with 20 additions and 7 deletions

View File

@@ -17,6 +17,9 @@ class Parser:
def remote_dir(self, val: str, ans: typing.Dict[str, typing.Any]) -> None:
ans['remote_dir'] = str(val)
def shell_integration(self, val: str, ans: typing.Dict[str, typing.Any]) -> None:
ans['shell_integration'] = str(val)
def create_result_dict() -> typing.Dict[str, typing.Any]:
return {