diff options
author | Sean Dewar <seandewar@users.noreply.github.com> | 2023-08-21 10:46:06 +0100 |
---|---|---|
committer | Sean Dewar <seandewar@users.noreply.github.com> | 2023-08-25 10:59:56 +0100 |
commit | ec971288267dece8f1bc492847b3ae6e5271acd0 (patch) | |
tree | 28a4dae80aceb0b864a508d61591c0912a261306 | |
parent | 464472b4f75c91f36fa224600377ab1d1a467e14 (diff) | |
download | rneovim-ec971288267dece8f1bc492847b3ae6e5271acd0.tar.gz rneovim-ec971288267dece8f1bc492847b3ae6e5271acd0.tar.bz2 rneovim-ec971288267dece8f1bc492847b3ae6e5271acd0.zip |
vim-patch:19968fc4ec2c
runtime(termdebug): re-indent lines (vim/vim#12857)
https://github.com/vim/vim/commit/19968fc4ec2c36c7d528c7326acf43e5d663ba39
Co-authored-by: Shane-XB-Qian <shane.qian@foxmail.com>
-rw-r--r-- | runtime/pack/dist/opt/termdebug/plugin/termdebug.vim | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/pack/dist/opt/termdebug/plugin/termdebug.vim b/runtime/pack/dist/opt/termdebug/plugin/termdebug.vim index 10e17bd5e0..83857221de 100644 --- a/runtime/pack/dist/opt/termdebug/plugin/termdebug.vim +++ b/runtime/pack/dist/opt/termdebug/plugin/termdebug.vim @@ -1637,9 +1637,9 @@ func s:HandleCursor(msg) " prompt, since it is unlikely we want to edit the file. " The file may be changed but not saved, warn for that. au SwapExists * echohl WarningMsg - \ | echo 'Warning: file is being edited elsewhere' - \ | echohl None - \ | let v:swapchoice = 'o' + \ | echo 'Warning: file is being edited elsewhere' + \ | echohl None + \ | let v:swapchoice = 'o' augroup END if &modified " TODO: find existing window |