Start work on the remote_file kitten

Easy access to files over SSH
This commit is contained in:
Kovid Goyal
2020-09-12 06:36:41 +05:30
parent e6839b45e3
commit d6e27e776b
7 changed files with 239 additions and 7 deletions

View File

@@ -789,6 +789,7 @@ class KittyCommonOpts(TypedDict):
select_by_word_characters: str
open_url_with: List[str]
url_prefixes: Tuple[str, ...]
editor: str
def common_opts_as_dict(opts: Optional[OptionsStub] = None) -> KittyCommonOpts:
@@ -798,4 +799,5 @@ def common_opts_as_dict(opts: Optional[OptionsStub] = None) -> KittyCommonOpts:
'select_by_word_characters': opts.select_by_word_characters,
'open_url_with': opts.open_url_with,
'url_prefixes': opts.url_prefixes,
'editor': opts.editor,
}