mirror of
https://github.com/kovidgoyal/kitty.git
synced 2026-09-01 06:41:30 +00:00
Allow configuring the interpreter to use on the remote host
This commit is contained in:
parent
95efeee7de
commit
fe27ee2d79
4 changed files with 18 additions and 6 deletions
|
|
@ -18,6 +18,9 @@ class Parser:
|
|||
def hostname(self, val: str, ans: typing.Dict[str, typing.Any]) -> None:
|
||||
hostname(val, ans)
|
||||
|
||||
def interpreter(self, val: str, ans: typing.Dict[str, typing.Any]) -> None:
|
||||
ans['interpreter'] = str(val)
|
||||
|
||||
def remote_dir(self, val: str, ans: typing.Dict[str, typing.Any]) -> None:
|
||||
ans['remote_dir'] = relative_dir(val)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue