diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2020-10-03 09:22:26 -0400 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2020-10-05 23:20:45 -0400 |
commit | 8810973da40e9e4c886f000cebb8f74c5c65ad48 (patch) | |
tree | 7fe96b5cc85b68f9159d1e69c703997dc801af10 | |
parent | 27b811dc1f69a31924ddcd3c0a3cbbe138923c96 (diff) | |
download | rneovim-8810973da40e9e4c886f000cebb8f74c5c65ad48.tar.gz rneovim-8810973da40e9e4c886f000cebb8f74c5c65ad48.tar.bz2 rneovim-8810973da40e9e4c886f000cebb8f74c5c65ad48.zip |
runtime/typescript.vim: 96f45c0b6fc9e9d404e6805593ed1e0e6795e470
Port "runtime/indent/typescript.vim" changes only.
Close https://github.com/neovim/neovim/pull/12716.
https://github.com/vim/vim/commit/96f45c0b6fc9e9d404e6805593ed1e0e6795e470
-rw-r--r-- | runtime/indent/typescript.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/indent/typescript.vim b/runtime/indent/typescript.vim index 69accaa054..b6b2cb5acf 100644 --- a/runtime/indent/typescript.vim +++ b/runtime/indent/typescript.vim @@ -1,7 +1,7 @@ " Vim indent file " Language: TypeScript " Maintainer: See https://github.com/HerringtonDarkholme/yats.vim -" Last Change: 2019 Jun 06 +" Last Change: 2019 Oct 18 " Acknowledgement: Based off of vim-ruby maintained by Nikolai Weibull http://vim-ruby.rubyforge.org " 0. Initialization {{{1 @@ -442,7 +442,7 @@ let &cpo = s:cpo_save unlet s:cpo_save function! Fixedgq(lnum, count) - let l:tw = &tw ? &tw : 80; + let l:tw = &tw ? &tw : 80 let l:count = a:count let l:first_char = indent(a:lnum) + 1 |