diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-04-29 08:54:38 -0400 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-04-29 09:27:19 -0400 |
commit | 0a0034718c00fd9f434d20d29e415287db284bbe (patch) | |
tree | 8d99d94c42772a4c39acf059745609b85d596974 /runtime/autoload | |
parent | 27fb03f5a03db6738967f9e0e0ea85ea0fab7592 (diff) | |
download | rneovim-0a0034718c00fd9f434d20d29e415287db284bbe.tar.gz rneovim-0a0034718c00fd9f434d20d29e415287db284bbe.tar.bz2 rneovim-0a0034718c00fd9f434d20d29e415287db284bbe.zip |
vim-patch:2547aa930b59
Update runtime files.
https://github.com/vim/vim/commit/2547aa930b59f5e2bcb70e81d5a57ed461e59b4f
Omit modifyOtherKeys, vim9, vim.man.
Diffstat (limited to 'runtime/autoload')
-rw-r--r-- | runtime/autoload/decada.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/autoload/decada.vim b/runtime/autoload/decada.vim index 7741ff0572..5124429a75 100644 --- a/runtime/autoload/decada.vim +++ b/runtime/autoload/decada.vim @@ -25,7 +25,7 @@ function decada#Unit_Name () dict " {{{1 " Convert filename into acs unit: " 1: remove the file extenstion. " 2: replace all double '_' or '-' with an dot (which denotes a separate) - " 3: remove a trailing '_' (wich denotes a specification) + " 3: remove a trailing '_' (which denotes a specification) return substitute (substitute (expand ("%:t:r"), '__\|-', ".", "g"), '_$', "", '') endfunction decada#Unit_Name " }}}1 |