Mercurial > dotfiles
annotate unixSoft/bin/epylint @ 377:117e3c11d953
zprofile: introduce zprofile use
El Capitan (OS X 10.11) introduces a system-level /etc/zprofile which
uses a path_helper thing to mangle $PATH. Unfortunately, the way
path_helper works, it forces /usr/local/bin and /usr/bin to the
*start* of the PATH variable, which means that any PATH mutations I
want have to run after /etc/zprofile calls path_helper. As such, move
my path insertions into .zprofile{,-machine} rather than
.zshenv{,-machine} so that I can still ensure my path entries are at
the start of PATH rather than the end. This works because:
> Commands are then read from $ZDOTDIR/.zshenv. If the shell is a
> login shell, commands are read from /etc/zprofile and then
> $ZDOTDIR/.zprofile. Then, if the shell is interactive, commands
> are read from /etc/zshrc and then $ZDOTDIR/.zshrc. Finally, if the
> shell is a login shell, /etc/zlogin and $ZDOTDIR/.zlogin are read.
This means that non-login shells no longer pick up my custom PATH
entries, but as I only use OS X as a desktop OS that seems like a
workable tradeoff for now.
author | Augie Fackler <raf@durin42.com> |
---|---|
date | Sun, 31 Jan 2016 20:46:29 -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() |