diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2023-09-26 06:41:53 -0700 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2023-09-26 06:41:53 -0700 |
commit | de9348978999aa78f8351b5f55930bb109e742f7 (patch) | |
tree | d04dbc203f1c8ed81092e20f524488313c39e080 /runtime | |
parent | bc6fc0123d2f02b1f209cbec740665033fbb5892 (diff) | |
download | rneovim-de9348978999aa78f8351b5f55930bb109e742f7.tar.gz rneovim-de9348978999aa78f8351b5f55930bb109e742f7.tar.bz2 rneovim-de9348978999aa78f8351b5f55930bb109e742f7.zip |
refactor(tutor): cleanup
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/autoload/tutor.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/autoload/tutor.vim b/runtime/autoload/tutor.vim index 701be28ccc..a546f7007e 100644 --- a/runtime/autoload/tutor.vim +++ b/runtime/autoload/tutor.vim @@ -230,7 +230,7 @@ function! tutor#TutorCmdComplete(lead,line,pos) endfunction function! tutor#ApplyTransform() - if has('win32') + if has('win32') sil! %s/{unix:(\(.\{-}\)),win:(\(.\{-}\))}/\2/g else sil! %s/{unix:(\(.\{-}\)),win:(\(.\{-}\))}/\1/g |