diff options
| author | Justin M. Keyes <justinkz@gmail.com> | 2025-02-09 22:04:33 +0100 |
|---|---|---|
| committer | Justin M. Keyes <justinkz@gmail.com> | 2025-02-10 18:56:11 +0100 |
| commit | 4b0e2605eaf90268195029a29f10903dc82729e7 (patch) | |
| tree | 76f735084431f5027cdfc90da43370af0f2d2477 /test/functional/testnvim.lua | |
| parent | ad60b3fb4806c0917010bbe97876c22fb57cabcd (diff) | |
| download | rneovim-4b0e2605eaf90268195029a29f10903dc82729e7.tar.gz rneovim-4b0e2605eaf90268195029a29f10903dc82729e7.tar.bz2 rneovim-4b0e2605eaf90268195029a29f10903dc82729e7.zip | |
feat(ui): UI :detach command
Problem:
Cannot detach the current UI.
Solution:
- Introduce `:detach`.
- Introduce `Channel.detach`.
Co-authored-by: bfredl <bjorn.linse@gmail.com>
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()') |