diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2025-02-10 10:21:47 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-02-10 10:21:47 -0800 |
commit | c7d13f2895fa657ff3d9d45741f9abec25072b56 (patch) | |
tree | 0b61d786b8fb318a0e9b2c53eb633332af5aa05d /test/functional/testnvim.lua | |
parent | ad60b3fb4806c0917010bbe97876c22fb57cabcd (diff) | |
parent | a1906c23ddab6fa4d15bc5ceddee97df8034d8cb (diff) | |
download | rneovim-c7d13f2895fa657ff3d9d45741f9abec25072b56.tar.gz rneovim-c7d13f2895fa657ff3d9d45741f9abec25072b56.tar.bz2 rneovim-c7d13f2895fa657ff3d9d45741f9abec25072b56.zip |
Merge #32385 UI :detach command
Diffstat (limited to 'test/functional/testnvim.lua')
-rw-r--r-- | test/functional/testnvim.lua | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/test/functional/testnvim.lua b/test/functional/testnvim.lua index 59cb593cf7..9b7ece3c21 100644 --- a/test/functional/testnvim.lua +++ b/test/functional/testnvim.lua @@ -908,8 +908,10 @@ function M.is_asan() return version:match('-fsanitize=[a-z,]*address') end --- Returns a valid, platform-independent Nvim listen address. --- Useful for communicating with child instances. +--- Returns a valid, platform-independent Nvim listen address. +--- Useful for communicating with child instances. +--- +--- @return string function M.new_pipename() -- HACK: Start a server temporarily, get the name, then stop it. local pipename = M.eval('serverstart()') |