You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Let us know about features you really want to see in reedline.
I want sync_on_enter, except that it would always still suggest the last run command in that terminal tab/window first. And only after that would it give the synced commands from other terminal tabs and windows.
References
Seems to be implemented in zsh, as it is only configured in omz.
The way I'm reading that is that zsh only has that one option (read sync_on_enter) but it works a bit differently. As sync_on_enter, after it has synced, will just give the last command from history, not last command in that tab first.
The text was updated successfully, but these errors were encountered:
We can provide this functionality in Nushell for the SqliteBackedHistory if I understand your request correctly. We do it based on the current working directory but could extend this for session ids as well. With the text backed history we can not provide as many convenience features without a breaking change to the representation (purely session based could in theory be made by changing the syncing logic even further, but then the question becomes how much worse can we make the API shared between text based and sqlite. There is already the yearning for a better interface.)
Let us know about features you really want to see in reedline.
I want sync_on_enter, except that it would always still suggest the last run command in that terminal tab/window first. And only after that would it give the synced commands from other terminal tabs and windows.
References
Seems to be implemented in zsh, as it is only configured in omz.
The way I'm reading that is that zsh only has that one option (read sync_on_enter) but it works a bit differently. As sync_on_enter, after it has synced, will just give the last command from history, not last command in that tab first.
The text was updated successfully, but these errors were encountered: