diff options
author | Christian Clason <c.clason@uni-graz.at> | 2023-08-09 19:13:59 +0200 |
---|---|---|
committer | Christian Clason <c.clason@uni-graz.at> | 2023-08-09 20:43:45 +0200 |
commit | 164370a4cb92f5063280d4748e1e67fafc79df34 (patch) | |
tree | 29ef5d264870f1fc62c766093f5575afdfd2b0df /runtime/lua/vim/_meta/vimfn.lua | |
parent | c43c745a14dced87a23227d7be4f1c33d4455193 (diff) | |
download | rneovim-164370a4cb92f5063280d4748e1e67fafc79df34.tar.gz rneovim-164370a4cb92f5063280d4748e1e67fafc79df34.tar.bz2 rneovim-164370a4cb92f5063280d4748e1e67fafc79df34.zip |
vim-patch:c2bd205254c8
Change "the" to "then" under ':help bufload()' (vim/vim#12662)
https://github.com/vim/vim/commit/c2bd205254c89ecf46e08965f53d7991315d9c98
N/A commits:
vim-patch:64dea84bb05a (we have our own manpager at home)
vim-patch:958e15bb1c7d (we have our own editorconfig syntax file)
vim-patch:c41b3c9f95ac (we don't have defaults.vim)
Co-authored-by: Daniel Steinberg <dstein64@users.noreply.github.com>
Diffstat (limited to 'runtime/lua/vim/_meta/vimfn.lua')
-rw-r--r-- | runtime/lua/vim/_meta/vimfn.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/lua/vim/_meta/vimfn.lua b/runtime/lua/vim/_meta/vimfn.lua index 7c98ed8849..14aae99971 100644 --- a/runtime/lua/vim/_meta/vimfn.lua +++ b/runtime/lua/vim/_meta/vimfn.lua @@ -534,7 +534,7 @@ function vim.fn.buflisted(buf) end --- refers to an existing file then the file is read. Otherwise --- the buffer will be empty. If the buffer was already loaded --- then there is no change. If the buffer is not related to a ---- file the no file is read (e.g., when 'buftype' is "nofile"). +--- file then no file is read (e.g., when 'buftype' is "nofile"). --- If there is an existing swap file for the file of the buffer, --- there will be no dialog, the buffer will be loaded anyway. --- The {buf} argument is used like with |bufexists()|. |