Mercurial > dotfiles
view unixSoft/bin/hgimp @ 351:bef29d49d19f
safe-paste: adds support for bracketed paste mode to zsh
Since I don't use oh-my-zsh, just import their code directly with a
reference. Based on the site where I learned about this [0], it's
originally from [1], and I downloaded it from [2].
0: https://cirw.in/blog/bracketed-paste
1: http://www.zsh.org/mla/users/2011/msg00367.html
2: https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/plugins/safe-paste/safe-paste.plugin.zsh
author | Augie Fackler <raf@durin42.com> |
---|---|
date | Mon, 10 Nov 2014 09:26:04 -0500 |
parents | 70e76c545606 |
children | 2ac43cd7bbf7 |
line wrap: on
line source
#!/usr/bin/env python import argparse import os import subprocess import sys _MAP = { 'hg': '~/Programming/hg/crew', 'hgsubversion': '~/Programming/hg/hgsubversion', 'hg-git': '~/Programming/hg/hg-git', } def main(argv): p = argparse.ArgumentParser('import patches') p.add_argument('repo', type=str, nargs=1, help='repo name to apply patches to') args = p.parse_args(argv[1:]) name, = args.repo if name in _MAP: repo = _MAP[name] else: c = [] for n in _MAP: if n.startswith(name): c.append(n) if not c: print 'abort: no repo named %s' % name sys.exit(1) elif len(c) != 1: print 'abort: ambiguous repo name %s matches %s' % ( name, ', '.join(c)) sys.exit(1) repo = _MAP[c[0]] hg = subprocess.Popen(['hg', '-R', repo, 'import', '--obsolete', '-'], stdin=subprocess.PIPE) hg.stdin.write(sys.stdin.read()) hg.stdin.close() hg.wait() sys.exit(hg.returncode) if __name__ == '__main__': main(argv=sys.argv)