mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-03 16:10:05 +08:00
14 lines
390 B
Python
14 lines
390 B
Python
|
# ============================================================================
|
||
|
# FILE: session.py
|
||
|
# AUTHOR: Shougo Matsushita <Shougo.Matsu at gmail.com>
|
||
|
# License: MIT license
|
||
|
# ============================================================================
|
||
|
|
||
|
import typing
|
||
|
|
||
|
|
||
|
class Session(typing.NamedTuple):
|
||
|
name: str = ''
|
||
|
path: str = ''
|
||
|
opened_candidates: typing.List[str] = []
|