mirror of https://github.com/conqp/rcon
2 changed files with 43 additions and 11 deletions
@ -0,0 +1,33 @@ |
|||||
|
"""Wrapper for readline support.""" |
||||
|
|
||||
|
from os import name |
||||
|
from pathlib import Path |
||||
|
|
||||
|
|
||||
|
__all__ = ['CommandHistory'] |
||||
|
|
||||
|
|
||||
|
HIST_FILE = Path.home().joinpath('.rconshell_history') |
||||
|
|
||||
|
|
||||
|
if name == 'posix': |
||||
|
from readline import read_history_file, write_history_file |
||||
|
|
||||
|
class CommandHistory: |
||||
|
"""Context manager for the command line history.""" |
||||
|
|
||||
|
def __enter__(self): |
||||
|
read_history_file() |
||||
|
return self |
||||
|
|
||||
|
def __exit__(self, *_): |
||||
|
write_history_file(HIST_FILE) |
||||
|
else: |
||||
|
class CommandHistory: |
||||
|
"""Context manager for the command line history.""" |
||||
|
|
||||
|
def __enter__(self): |
||||
|
return self |
||||
|
|
||||
|
def __exit__(self, *_): |
||||
|
pass |
Loading…
Reference in new issue