Thiago Padilha

Results 136 comments of Thiago Padilha

> Because many parameters are not supported in OpenAI’s standard API, in order to use sd.cpp within clients that support the OpenAI API, I chose to include the extra parameters...

I stand by my previous [argument](https://github.com/neovim/neovim/pull/1130#issuecomment-55277812): Why add more C code when something like [this](https://gist.github.com/tarruda/d89adc85913a2b634ec1) would suffice? > Many plugins have implemented original cache features(for example, neocomplete/neocomplcache, vimfiler, unite.vim, ctrlp.vim,...

> Vim is capable of storing some variable values in viminfo and sessions (stored variables are different). But this is hardly useful if you have more then one Vim instance...

> I do not think that implementing sharing feature properly will result in less lines then we currently have. Though there probably should be a library solution. If we store...

@ZyX-I yes, this is simple/elegant way to emulate `:shell`, but it will still be asynchronous. It might be possible to combine this with `jobwait` to create a synchronous version though....

> @tarruda If making it synchronous from the user point of view is required it is enough to just disable as it is the only way to exit terminal mode....