RFC: Add session option#27
Conversation
|
This is an RFC for adding session support to vim-medieval. It's currently quite It currently has some checks in there for python (because that's what I use in This should probably be integrated into |
|
The main problem this is trying to address is where something is either costly Using require here would make the print block always take 5 seconds, whereas |
Adds a session option to codeblocks so previous results can be used. To check that a command is done running, we wait for an eof_token to appear. This allows us to not cut off commands with output early, but also doesn't rely on using sleep. **This commit does not support neovim**
Splits up retrieving the data from s:session_read_cb into separate helper functions for vim and nvim.
Adds a session option to codeblocks so previous results can be used.
To check that a command is done running, we wait for an eof_token to appear. This allows us to not cut off commands with output early, but also doesn't rely on using sleep.