Merge remote-tracking branch 'origin/master'

Conflicts:
	vimrc
This commit is contained in:
Eryn Wells 2013-01-13 10:19:57 -08:00
commit a8dde47e93
6 changed files with 60 additions and 7 deletions

View file

@ -2,7 +2,7 @@
# Create a code module
# Eryn Wells <eryn@erynwells.me>
local opts='cmph'
local opts='Ccmph'
local funcname=$0
_usage() {
@ -24,6 +24,11 @@ local modtype=''
while getopts $opts opt; do
[[ $complete -eq 1 ]] && return 2
case $opt in
C)
modtype='C++'
srcext='cc'
headext='hh'
;;
c)
modtype='C'
srcext='c'