Quentin Minster Picavet
Quentin Minster Picavet
OpenSSL 1.1.0 deprecates a lot of APIs, and may be built with those deprecated APIs disabled entirely. This PR replaces deprecated APIs with their replacements in `crypto-openssl-11.cpp`.
Currently if cowsay/figlet aren't in the path, the lambdas for cows/fonts return nil and the scripts error out with: [...]/coq.thirdparty/lua/coq_3p/cow/init.lua:64: attempt to get length of upvalue 'cows' (a nil value)...
Hi, and first of all thank you for this awesome tool! I switched over from CFF Explorer with the release of PE-bear 0.5.0 and I'm not looking back. :) I'd...
The set_copy_mode_open_search_bindings() function was not made compatible with tmux-2.4 in PR #24. This PR simply sees to it.
This PR implements the fix(es) proposed in issue #5537. For now, the most basic fix is simply to use `(authenticated)` as the default authorized username when only a credentials file...
Hi, and first of all thank you for this awesome tool! I switched over from CFF Explorer with the release of PE-bear 0.5.0 and I'm not looking back. :) I'd...
`'{#:8X}'.format(val)` yields a `KeyError` exception complaining about the #. Alternate-form # format specifier should come after the colon, so this PR fixes this which seems to be a mere typo.
```python @pynvim.command('Scratch') def cmd_scratch(self): buffer = self.nvim.api.create_buf(False, True) win = self.nvim.api.open_win(buffer, True, {'width':60,'height':5,'style':'minimal','relative':'editor','row':0,'col':0}) self.nvim.out_write(f'Scratch {buffer=} {win=}\n') @pynvim.autocmd('BufUnload', eval='+expand("")', sync=True) def on_bufunload(self, buffer): self.nvim.out_write(f'BufUnload {buffer=} {self.nvim.current.buffer.number=}\n') ``` When I `:bdelete` the...
The following functions were deprecated in OpenSSL 1.1.0, and do not need to be called (directly, or a replacement) explicitly: * `OpenSSL_add_all_algorithms()` * `ERR_load_crypto_strings()` * `ERR_free_strings()` * `EVP_cleanup()` * `ENGINE_cleanup()`...