New comment by carvalhudo on void-packages repository https://github.com/void-linux/void-packages/pull/41659#issuecomment-1399316450 Comment: I executed these basic test cases below (some of them are my main use cases) with success for both 2.4.0 and 2.5.1 versions: **test 1**: open files remotely - **OK** ``` $ nvim --listen /tmp/nvimsocket $ nvr --remote file_1 file_2 ``` **test 2**: send keys to the current buffer - **OK** ``` $ nvim --listen /tmp/nvimsocket $ nvr --remote file_1 $ nvr --remote-send 'ihello, world!:w' ``` **test 3**: get the current buffer name - **OK** ``` $ nvim --listen /tmp/nvimsocket $ nvr --remote file_1 $ nvr --remote-expr 'bufname("")' ``` Any other contributions are welcome :D