From fef3276f34d05d30ce6127893816e2afa853023d Mon Sep 17 00:00:00 2001 From: Chris Paul Date: Tue, 21 Feb 2017 12:32:38 -0800 Subject: escape dot in maker regex (#357) * escape dot in maker regex * Create test_typecheck_handler * Rename test_typecheck_handler to test_typecheck_handler.vader --- ale_linters/typescript/typecheck.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ale_linters') diff --git a/ale_linters/typescript/typecheck.vim b/ale_linters/typescript/typecheck.vim index 080a2381..0de6639c 100644 --- a/ale_linters/typescript/typecheck.vim +++ b/ale_linters/typescript/typecheck.vim @@ -7,7 +7,7 @@ function! ale_linters#typescript#typecheck#Handle(buffer, lines) abort " hello.ts[7, 41]: Property 'a' does not exist on type 'A' " hello.ts[16, 7]: Type 'A' is not assignable to type 'B' " - let l:pattern = '.\+.ts\[\(\d\+\), \(\d\+\)\]: \(.\+\)' + let l:pattern = '.\+\.ts\[\(\d\+\), \(\d\+\)\]: \(.\+\)' let l:output = [] for l:line in a:lines -- cgit v1.2.3