#N/A Add ability to get Fish Shell history

This commit is contained in:
Pablo Santiago Blum de Aguiar
2015-11-22 01:57:20 -02:00
parent 465f6191b0
commit 4a7b335d7c
2 changed files with 11 additions and 0 deletions
+6
View File
@@ -191,6 +191,12 @@ class Fish(Generic):
def _get_history_line(self, command_script):
return u'- cmd: {}\n when: {}\n'.format(command_script, int(time()))
def _script_from_history(self, line):
if '- cmd: ' in line:
return line.split('- cmd: ', 1)[1]
else:
return ''
def and_(self, *commands):
return u'; and '.join(commands)