LCD 47
6ba8e651cb
Make shell escaping less produce fewer useless quotes.
...
Function inspired by tpope's vim-dispatch.
2013-07-04 21:04:20 +03:00
LCD 47
4708539690
Typo.
2013-06-29 20:54:08 +03:00
LCD 47
9dfc53c9c7
Optimisation: avoid placing duplicate signs.
2013-06-22 20:01:22 +03:00
LCD 47
e291f9f06d
Bug fix: add enabled/disabled guards to notifiers.
...
Also handle the case when user disables notifiers after the first run.
This doesn't work for signs though, since it causes an ugly flicker in
the common case.
2013-06-22 08:03:03 +03:00
LCD 47
6a0dc699e0
Make cursor echo handle include files.
2013-06-21 20:48:17 +03:00
LCD 47
3a322a700f
Registry defaults for puppet.
2013-06-18 18:53:28 +03:00
LCD 47
60675868d7
Stop spamming the user about the active checkers.
2013-06-16 06:40:28 +03:00
LCD 47
4f5320f2cb
Debug message: shell return value.
2013-06-15 08:28:04 +03:00
LCD 47
af9d6f627b
Print a message if no active checkers are found.
2013-06-15 07:36:20 +03:00
LCD 47
da7002516b
Added option 'cwd' to SyntasticMake().
2013-06-11 21:36:44 +03:00
LCD 47
6574872b55
Preserve order in checker lists. Fixes #684 .
...
Keep order from g:syntastic_[filetype]_checkers and s:defaultCheckers in
getActiveCheckers(). Keep order in syntastic#util#unique().
2013-06-10 23:14:59 +03:00
LCD 47
7a919a4d0a
Bug fix: getwinvar() got its third argument only in Vim 7.3.831.
2013-06-07 22:23:56 +03:00
LCD 47
a8f4e0e327
Add filetype to the status line of the location window.
2013-06-07 00:50:16 +03:00
LCD 47
4c888855d6
Sets the status line of the location window.
...
Shows the command used to produce the error list on the status line of
the location window. Also fixed a (harmless) refresh bug.
2013-06-07 00:34:05 +03:00
LCD 47
9b698bb32b
Reset locales when running lmake. Fixes #665 .
2013-06-06 13:06:10 +03:00
LCD 47
8f430620c2
Cleanup: method naming.
2013-06-01 07:45:42 +03:00
LCD 47
d3354f175c
Make syntastic#makeprg#build() aware of filetypes. Fixes #667 .
2013-05-31 21:05:45 +03:00
LCD 47
e903f48b10
Merge branch 'ft_aliases'
2013-05-31 20:41:41 +03:00
LCD 47
e6bb7bd4c6
Bug fix: :SyntasticInfo didn't return information for composite filetypes.
2013-05-31 19:06:33 +03:00
LCD 47
1e8cc9e506
Added some registry defaults.
2013-05-31 14:37:51 +03:00
LCD 47
48b934b8aa
Adds filetype aliases.
...
This allows checking of files with non-standard filetypes.
2013-05-31 10:19:52 +03:00
LCD 47
bad592ece8
Minor fixes.
2013-05-30 19:08:12 +03:00
LCD 47
d205c97e95
Clear loclist if there are no errors. Fixes #650 .
2013-05-27 09:23:09 +03:00
LCD 47
4d9a8338e1
Minor optimisation related to syntastic_ignore_files.
2013-05-23 11:50:26 +03:00
Martin Grenfell
86fdb12540
Merge remote-tracking branch 'origin/modemap_ignore'
2013-05-17 15:58:07 +01:00
LCD 47
7b5b259d89
More fixes backported from the buffers branch.
2013-05-15 09:04:34 +03:00
LCD 47
8a998efe54
Backport of small fixes from the buffers branch.
2013-05-14 20:21:57 +03:00
LCD 47
8d47df65d2
Adds an option g:syntastic_ignore_files.
...
List of regexps specifying files that should neither be checked, nor
included in error lists. The full paths of files are matched against
these regexps, and the matches are case sensitive.
2013-05-14 11:14:49 +03:00
LCD 47
7319cb6a9e
Postprocessing functions.
...
This patch adds an option 'postprocess' to SyntasticMake(). The value
of this option is a list of names. Each name is translated to a
function syntastic#postprocess#name(). These functions are applied in
order to the list of errors just before SyntasticMake() returns. They
take a single parameter, the list of errors, and are supposed to
returned the processed list.
2013-05-10 14:11:07 +03:00
LCD 47
7f0412e91d
Added an option to skip checks on :wq, :x, and :ZZ, try 2.
2013-05-06 20:18:02 +03:00
LCD 47
431508e19e
Fix for #641 : back off 003751a
.
2013-05-06 19:26:45 +03:00
LCD 47
003751a48d
Be less wastefull about loclists.
...
This is a first step towards making :lolder and :lnewer work with
Syntastic. It still has a long way to go: a new loclist is now craeted
at each run of SyntasticMake(), but the notification machinery can only
use the last one. Ideally a single loclist would be created per window
and then reused.
2013-05-04 09:36:52 +03:00
LCD 47
f7508703d6
Call notifiers.reset() only for enabled notifiers.
2013-05-03 09:24:34 +03:00
LCD 47
4d694ad920
The QuitPre event was added in Vim 7.3.544.
2013-04-27 18:06:18 +03:00
LCD 47
c9b9a9ef5e
Fix for #624 .
...
Handle closing the loclist window in a QuitPre.
Remove the prematurely added option g:syntastic_allow_quit.
2013-04-27 13:59:19 +03:00
LCD 47
63ec78cfb1
Adds an option "syntastic_allow_quit".
2013-04-26 16:20:43 +03:00
Martin Grenfell
b72d9e57da
add :SyntasticInfo command to echo info about current checkers
...
Closes #557
2013-04-13 23:36:18 +01:00
Martin Grenfell
49b6012f98
add basic deprecation warning system
2013-04-13 17:19:24 +01:00
Martin Grenfell
a9938e0afd
Merge remote-tracking branch 'origin/notifiers'
...
Conflicts:
autoload/syntastic/util.vim
2013-04-13 17:05:18 +01:00
Martin Grenfell
fbbb30295b
add a simple debug message system
...
We may want to add debug messages at many points. We can add them as we
find we need them - i.e. when debugging stuff with users.
2013-04-13 16:51:23 +01:00
Martin Grenfell
a7fcf4cad2
Merge branch 'notifiers'
2013-04-13 16:11:14 +01:00
Martin Grenfell
e3f5958b7d
bump to version 3.0.0
2013-04-13 16:02:03 +01:00
LCD 47
3083df59fc
Addresses #530 .
...
If variable g:syntastic_[filetype]_checker is found in user's config,
g:syntastic_[filetype]_checkers is set and a warning is issued.
2013-04-13 11:04:47 +03:00
LCD 47
4e32123b53
Make the enabled() method optional.
2013-04-11 23:49:39 +03:00
LCD 47
0248a848d3
Minor bug fix.
2013-04-10 13:48:19 +03:00
LCD 47
fac0d46c85
Rename signer.vim -> signs.vim.
2013-04-10 13:45:18 +03:00
LCD 47
11380c2d51
Minor cleanup.
...
Warning signs should not overwrite error ones.
Use buffers instead of file names when placing signs.
Other minor changes.
2013-04-10 13:40:03 +03:00
LCD 47
31b654301b
Fix for #597 .
...
If the first error in the location list refers to a file that isn't
loaded, entering the quickfix window would close it.
If `hidden` is set, `:quit`-ing the main file would not close the
quickfix window.
2013-04-09 18:20:14 +03:00
Martin Grenfell
2b6f6a5724
move s:Loclist() into SyntasticLoclist as a class method
2013-04-09 09:52:02 +01:00
LCD 47
92a25ed1a2
More cleaning up.
...
Renames notification classes.
Fixes a stupid bug related to the cursor notifier.
2013-04-09 01:10:17 +03:00