I broke up with neovim....vim is my best friend now

This commit is contained in:
LinlyBoi
2023-04-30 08:14:07 +03:00
parent 0d185449c5
commit 4a4a6b1e81
5245 changed files with 468325 additions and 25 deletions

View File

@@ -0,0 +1,39 @@
Before:
runtime ale_linters/awk/gawk.vim
After:
call ale#linter#Reset()
Execute(gawk syntax errors should be parsed correctly):
AssertEqual
\ [
\ {
\ 'lnum': 1,
\ 'col': 0,
\ 'text': "invalid char ''' in expression",
\ 'code': 0,
\ 'type': 'E',
\ },
\ {
\ 'lnum': 5,
\ 'col': 0,
\ 'text': 'unterminated string',
\ 'code': 0,
\ 'type': 'E',
\ },
\ {
\ 'lnum': 10,
\ 'col': 0,
\ 'text': "escape sequence `\u' treated as plain `u'",
\ 'code': 0,
\ 'type': 'W',
\ },
\ ],
\ ale#handlers#gawk#HandleGawkFormat(347, [
\ "gawk: something.awk:1: BEGIN { system('touch aaaaaaaaa') }",
\ "gawk: something.awk:1: ^ invalid char ''' in expression",
\ 'gawk: something.awk:5: { x = "aaaaaaaaaaa',
\ 'gawk: something.awk:5: ^ unterminated string',
\ "gawk: something.awk:10: warning: escape sequence `\u' treated as plain `u'",
\ ])