diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2020-10-06 09:03:21 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-06 09:03:21 -0400 |
commit | 07fde6c394ade480d7a435ad1cb730a3fe61be5d (patch) | |
tree | 688507cf5644eadfeccfd1e0ae8a5e712dca983f /runtime/indent/typescript.vim | |
parent | 753a86c01a02383df5faab3831a5d275c81f0b6d (diff) | |
parent | 3cc1b5c5b970af7ee3612ecba038c7fd3a16992d (diff) | |
download | rneovim-07fde6c394ade480d7a435ad1cb730a3fe61be5d.tar.gz rneovim-07fde6c394ade480d7a435ad1cb730a3fe61be5d.tar.bz2 rneovim-07fde6c394ade480d7a435ad1cb730a3fe61be5d.zip |
Merge pull request #13037 from janlazo/runtime-typescript
runtime: sync typescript runtime files with Vim
Diffstat (limited to 'runtime/indent/typescript.vim')
-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 |