diff options
author | w0rp <devw0rp@gmail.com> | 2017-11-11 23:04:08 +0000 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2017-11-12 10:56:53 +0000 |
commit | 099df0af522fddda09b50fd9ffe1f66cab310607 (patch) | |
tree | dee4315e2c8ce97856c8a65d8b292de545822dee /test | |
parent | 365d023d0e5094b474b91d2ad72244ec5a13a08c (diff) | |
download | ale-099df0af522fddda09b50fd9ffe1f66cab310607.zip |
#1108 Support selecting fixers with Lists
Diffstat (limited to 'test')
-rw-r--r-- | test/test_ale_fix.vader | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test/test_ale_fix.vader b/test/test_ale_fix.vader index ffe3d93b..ac6427ab 100644 --- a/test/test_ale_fix.vader +++ b/test/test_ale_fix.vader @@ -330,6 +330,15 @@ Expect(There should be only two lines): a b +Execute(ALEFix should allow Lists to be used for buffer-local fixer settings): + let g:ale_fixers.testft = ['AddCarets', 'AddDollars'] + let b:ale_fixers = ['RemoveLastLine'] + ALEFix + +Expect(There should be only two lines): + a + b + Given testft (A file with three lines): a b |