TS 中文文档 TS 中文文档
指南
GitHub (opens new window)
指南
GitHub (opens new window)
  • 入门教程

    • TypeScript 手册
    • 基础知识
    • 日常类型
    • 类型缩小
    • 更多关于函数
    • 对象类型
    • 从类型创建类型
    • 泛型
    • Keyof 类型运算符
    • Typeof 类型运算符
    • 索引访问类型
    • 条件类型
    • 映射类型
    • 模板字面类型
    • 类
    • 模块
  • 参考手册

  • 项目配置

Typescript Syntax for Vim


Syntax file and other settings for TypeScript. The syntax file is taken from this blogpost.

Checkout Tsuquyomi for omni-completion and other features for TypeScript editing.

Install


From Vim 8 onward, the plugin can be installed as simply as (Unix/Mac):

  1. ``` sh
  2. git clone https://github.com/leafgarland/typescript-vim.git ~/.vim/pack/typescript/start/typescript-vim

  3. ```

On Windows/Powershell, use the following:

  1. ``` sh
  2. git clone https://github.com/leafgarland/typescript-vim.git $home/vimfiles/pack/typescript/start/typescript-vim

  3. ```

For older versions of Vim, the simplest way to install is via a Vim add-in manager such as Plug, Vundle or Pathogen.

See the Installation Wiki

Pathogen


  1. ``` sh
  2. git clone https://github.com/leafgarland/typescript-vim.git ~/.vim/bundle/typescript-vim

  3. ```

If you want to install manually then you need to copy the files from this repository into your vim path, see the vim docs for :helpruntimepath for more information. This might be as simple as copying the files and directories to ~/.vim/ but it depends on your Vim install and operating system.

Usage


Once the files are installed the syntax highlighting and other settings will be automatically enabled anytime you edit a .ts file.

Indenting


This plugin includes a custom indenter (based on pangloss/vim-javascript'sindenter ), it works pretty well but there are cases where it fails. If these bother you or want to use other indent settings you can disable it by setting a flag in your .vimrc :

  1. ``` viml
  2. let g:typescript_indent_disable = 1
  3. ```

If you want the indenter to automatically indent chained method calls as you type.

  1. ``` ts
  2. something
  3.     .foo()
  4.     .bar();
  5. ```

Then add something like setlocal indentkeys+=0. to your .vimrc, see :help 'indentkeys' in vim for more information.

If you use the = operator to re-indent code it will always indent chained method calls - this can be disabled by changing the regex the indent script uses to identify indented lines. In this case removing '.' from the regex means that it wont indent lines starting with '.'. Note, this is not ideal as the regex may change making your setting out of date.

  1. ``` viml
  2. let g:typescript_opfirst='\%([<>=,?^%|*/&]\|\([-:+]\)\1\@!\|!=\|in\%(stanceof\)\=\>\)'
  3. ```

Compiler settings


This plugin contains compiler settings to set makeprg and errorformat. The compiler settings enable you to call the tsc compiler directly from Vim and display any errors or warnings in Vim's QuickFix window.

To run the compiler, enter :make, this will run tsc against the last saved version of your currently edited file.

The default for makeprg is `tsc $ %. You can enter other compiler options into your :make command line and they will be inserted in place of $`.

There are options to change the compiler name and to insert default options.

  1. ``` viml
  2. let g:typescript_compiler_binary = 'tsc'
  3. let g:typescript_compiler_options = ''
  4. ```

These options will be passed to the binary as command arguments. For example, if g:typescript_compiler_binary = 'tsc' and g:typescript_compiler_options = '--lib es6', l:makeprg will be: tsc --lib es6 $* %.

You can completely override this plugin's compiler settings with something like this in your .vimrc, where you can set makeprg to whatever you want.

  1. ``` viml
  2.   autocmd FileType typescript :set makeprg=tsc
  3. ```

Note, this plugin's compiler settings are not used by Syntastic which has its own way of changing the options. See https://github.com/scrooloose/syntastic#faqargs.

You can use something like this in your .vimrc to make the QuickFix window automatically appear if :make has any errors.

  1. ``` viml
  2. autocmd QuickFixCmdPost [^l]* nested cwindow
  3. autocmd QuickFixCmdPost    l* nested lwindow
  4. ```

Syntax highlighting


Syntax highlighting for TypeScript can be customized by following variables.

g:typescript_ignore_typescriptdoc : When this variable is defined, doccomments will not be highlighted.
g:typescript_ignore_browserwords : When this variable is set to 1, browser API names such as window or document will not be highlighted. (default to 0 )
Last Updated: 2023-09-03 17:10:52