This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if (exists("g:loaded_sendmail") && g:loaded_sendmail) || &cp | |
finish | |
endif | |
let g:loaded_sendmail = 1 | |
command! -complete=custom,ListAddresses -nargs=1 Email exec('py sendmail_email("<args>")') | |
fun ListAddresses(A,L,P) | |
return system("(grep -o '84=[[:alnum:]+\.\_\-]*@[[:alnum:]+\.\_\-]*' ~/.thunderbird/*.default/abook.mab && cat /home/felipe/.vim/plugin/sendmail.addresslist) | sed -s 's/84=//' | sort | uniq -u") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if (exists("g:loaded_detect_lang") && g:detect_lang) || &cp | |
finish | |
endif | |
let g:detect_lang = 1 | |
command! DetectLanguage exec('py detect_language()') | |
command! SetSpellLang exec('py detect_and_set_spelllang()') | |
python <<EOF |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python2 | |
# usage: script.py QUERY BIBFILE | |
import sys | |
import re | |
title_search = re.compile("\s*[Tt]itle\s*=\s*{(?P<title>\S.*)},\n") | |
booktitle_search = re.compile("\s*[Bb]ooktitle\s*=\s*{(?P<title>\S.*)},\n") | |
author_search = re.compile("\s*[Aa]uthor\s*=\s*{(?P<author>\S.*)},\n") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python2 | |
# usage: script.py QUERY BIBFILE | |
import sys | |
import os | |
import re | |
from subprocess import Popen, PIPE | |
title_search = re.compile("\s*[Tt]itle\s*=\s*{(?P<title>\S.*)},\n") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from subprocess import Popen, PIPE | |
import re | |
import glob | |
import shlex | |
class Pipeline(object): | |
def __init__(self, descriptor=None): | |
self.steps = [] | |
if descriptor: | |
for step in descriptor.split("|"): |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Maintainer: Dan Serban | |
# Contributors: L42y, aeosynth, fmoralesc | |
pkgname=firefox-aurora | |
pkgver=latest | |
pkgrel=1 | |
pkgdesc="Aurora channel" | |
url=http://www.mozilla.org/projects/firefox/ | |
arch=(i686 x86_64) | |
license=(MPL GPL LGPL) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#/usr/bin/env python2 | |
from sys import argv | |
from os import listdir | |
from os.path import getmtime | |
from shutil import copy, move | |
def import_nv(rename=False): | |
op = move if rename else copy | |
files_to_import = filter(lambda i: not i.isdigit(), listdir(".")) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From 5fa8c1c3e8bfa0ae7cf928e56df2bd408ce14e89 Mon Sep 17 00:00:00 2001 | |
From: Felipe Morales <[email protected]> | |
Date: Sat, 4 Aug 2012 19:27:06 -0300 | |
Subject: [PATCH] Further cleanup of rss feeds | |
If available, pass the feed data through pandoc or html2text before displaying. | |
--- | |
pacmatic | 8 +++++++- | |
1 file changed, 7 insertions(+), 1 deletion(-) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Settings] | |
gtk-application-prefer-dark-theme=1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/ada.vim | |
/apache.vim | |
/asm.vim | |
/asn.vim | |
/aspperl.vim | |
/awk.vim | |
/bib.vim | |
/changelog.vim | |
/clojure.vim | |
/cmake.vim |
OlderNewer