diff options
author | Lewis Russell <lewis6991@gmail.com> | 2023-09-04 12:03:03 +0100 |
---|---|---|
committer | Lewis Russell <lewis6991@gmail.com> | 2023-09-05 17:10:04 +0100 |
commit | 80d1333b7317460c562a982ac21f900d9fbd89f6 (patch) | |
tree | c6e2cbf8fd95806045b5f96991306a5a482231cd /runtime/lua/vim/ui.lua | |
parent | 6d5f12efd286c684de8608c07bb0f76a9d594b5b (diff) | |
download | rneovim-80d1333b7317460c562a982ac21f900d9fbd89f6.tar.gz rneovim-80d1333b7317460c562a982ac21f900d9fbd89f6.tar.bz2 rneovim-80d1333b7317460c562a982ac21f900d9fbd89f6.zip |
refactor(vim.system): factor out on_exit handling
Diffstat (limited to 'runtime/lua/vim/ui.lua')
-rw-r--r-- | runtime/lua/vim/ui.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/lua/vim/ui.lua b/runtime/lua/vim/ui.lua index 87b52787a0..cd90886489 100644 --- a/runtime/lua/vim/ui.lua +++ b/runtime/lua/vim/ui.lua @@ -118,7 +118,7 @@ end --- ---@param path string Path or URL to open --- ----@return SystemCompleted|nil # Command result, or nil if not found. +---@return vim.SystemCompleted|nil # Command result, or nil if not found. ---@return string|nil # Error message on failure --- ---@see |vim.system()| |