diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-10-16 16:36:25 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-16 16:36:25 +0800 |
commit | 3222f0ad0079ce4bd4e45886a00e4fe4685fb5dd (patch) | |
tree | 84dad2040bbd4ec91e4c53c9a191d4eeafe908be /runtime/autoload | |
parent | 0a3505eb9df8d57a9a0bcecf02bb3dda1c8edd29 (diff) | |
download | rneovim-3222f0ad0079ce4bd4e45886a00e4fe4685fb5dd.tar.gz rneovim-3222f0ad0079ce4bd4e45886a00e4fe4685fb5dd.tar.bz2 rneovim-3222f0ad0079ce4bd4e45886a00e4fe4685fb5dd.zip |
vim-patch:dbf749bd5aae (#25665)
runtime: Fix more typos (vim/vim#13354)
* Fix more typos
* Fix typos in ignored runtime/ directory
https://github.com/vim/vim/commit/dbf749bd5aaef6ea2d28bce081349785d174d96a
Co-authored-by: Viktor Szépe <viktor@szepe.net>
Diffstat (limited to 'runtime/autoload')
-rw-r--r-- | runtime/autoload/netrw.vim | 4 | ||||
-rw-r--r-- | runtime/autoload/phpcomplete.vim | 2 | ||||
-rw-r--r-- | runtime/autoload/rustfmt.vim | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/runtime/autoload/netrw.vim b/runtime/autoload/netrw.vim index dcaa075608..8b29ea9dfa 100644 --- a/runtime/autoload/netrw.vim +++ b/runtime/autoload/netrw.vim @@ -1914,7 +1914,7 @@ endfun " Doing this means that netrw will not come up as having changed a " setting last when it really didn't actually change it. " -" Used by s:NetrwOptionsRestore() to restore each netrw-senstive setting +" Used by s:NetrwOptionsRestore() to restore each netrw-sensitive setting " keepvars are set up by s:NetrwOptionsSave fun! s:NetrwRestoreSetting(keepvar,setting) """ call Dfunc("s:NetrwRestoreSetting(a:keepvar<".a:keepvar."> a:setting<".a:setting.">)") @@ -5515,7 +5515,7 @@ fun! netrw#BrowseX(fname,remote) " cleanup: remove temporary file, " delete current buffer if success with handler, " return to prior buffer (directory listing) - " Feb 12, 2008: had to de-activiate removal of + " Feb 12, 2008: had to de-activate removal of " temporary file because it wasn't getting seen. " if remote == 1 && fname != a:fname "" call Decho("deleting temporary file<".fname.">",'~'.expand("<slnum>")) diff --git a/runtime/autoload/phpcomplete.vim b/runtime/autoload/phpcomplete.vim index f9aa15c827..2556ac857e 100644 --- a/runtime/autoload/phpcomplete.vim +++ b/runtime/autoload/phpcomplete.vim @@ -2924,7 +2924,7 @@ endfor " builtin class information let g:php_builtin_object_functions = {} -" When completing for 'everyting imaginable' (no class context, not a +" When completing for 'everything imaginable' (no class context, not a " variable) we need a list of built-in classes in a format of {'classname':''} " for performance reasons we precompile this too let g:php_builtin_classnames = {} diff --git a/runtime/autoload/rustfmt.vim b/runtime/autoload/rustfmt.vim index 652e6af33a..8fd3858178 100644 --- a/runtime/autoload/rustfmt.vim +++ b/runtime/autoload/rustfmt.vim @@ -25,7 +25,7 @@ function! rustfmt#DetectVersion() silent let s:rustfmt_help = system(g:rustfmt_command . " --help") let s:rustfmt_unstable_features = s:rustfmt_help =~# "--unstable-features" - " Build a comparable rustfmt version varible out of its `--version` output: + " Build a comparable rustfmt version variable out of its `--version` output: silent let l:rustfmt_version_full = system(g:rustfmt_command . " --version") let l:rustfmt_version_list = matchlist(l:rustfmt_version_full, \ '\vrustfmt ([0-9]+[.][0-9]+[.][0-9]+)') |