New comment by carvalhudo on void-packages repository https://github.com/void-linux/void-packages/pull/41659#issuecomment-1399316450 Comment: I executed the basic test cases below (which 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 commands to the current buffer - **OK** ``` $ nvim --listen /tmp/nvimsocket $ nvr --remote file_1 $ nvr --remote-send 'ihello, world!yypppppp:w' $ nvr --remote-send 'dd:w' $ nvr --remote-send '5k' $ nvr --remote-send '5j' ``` **test 3**: running expressions in the current buffer - **OK** ``` $ nvim --listen /tmp/nvimsocket $ nvr --remote file_1 $ nvr --remote-expr 'bufname("")' $ nvr --remote-expr 'getline(5)' $ nvr --remote-expr 'getpid()' ``` **test 4**: recording and running macros - **OK** ``` $ nvim --listen /tmp/nvimsocket $ nvr --remote file_1 $ nvr --remote-send 'ihello, world!yypppppppppp:w' $ nvr --remote-send 'qbggVGU:wq' $ nvr --remote-send '@b' ``` Any other contributions are welcome :D