mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-03 08:50:04 +08:00
14 lines
390 B
Python
Vendored
14 lines
390 B
Python
Vendored
# ============================================================================
|
|
# 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] = []
|