Mercurial > dotfiles
annotate unixSoft/bin/epylint @ 266:93a8f55a4e30
xmonad: add takeTopFocus logHook
This is required to make IntelliJ (and supposedly all other Swing
applications) properly notice that they've recieved the
focus. According to [0], the problem is that "xmonad does not follow
ICCCM and ignores WM_TAKE_FOCUS protocol", but the patches on that
ticket haven't yet been accepted, so the function was added to
xmonad-contrib as a workaround until something happens in xmonad
proper.
[0]: http://code.google.com/p/xmonad/issues/detail?id=177
author | Augie Fackler <durin42@gmail.com> |
---|---|
date | Wed, 02 Nov 2011 09:53:57 -0500 |
parents | 7f67cf332537 |
children |
rev | line source |
---|---|
93 | 1 #!/usr/bin/env python |
2 import re | |
3 import sys | |
4 | |
5 from subprocess import Popen, PIPE | |
6 | |
7 p = Popen("pylint -f parseable -r n --disable-msg-cat=C,R %s" % | |
8 sys.argv[1], shell = True, stdout = PIPE).stdout | |
9 | |
10 for line in p.readlines(): | |
11 match = re.search("\\[([WE])(, (.+?))?\\]", line) | |
12 if match: | |
13 kind = match.group(1) | |
14 func = match.group(3) | |
15 if kind == "W": | |
16 msg = "Warning" | |
17 else: | |
18 msg = "Error" | |
19 | |
20 if func: | |
21 line = re.sub("\\[([WE])(, (.+?))?\\]", | |
22 "%s (%s):" % (msg, func), line) | |
23 else: | |
24 line = re.sub("\\[([WE])?\\]", "%s:" % msg, line) | |
25 print line, | |
26 | |
27 p.close() |