浏览代码

Removing say() function in perl plugin so that it doesn't overwrite OSX comand line utility. Closes #2562

Robby Russell 9 年之前
父节点
当前提交
43bdea4c2f
共有 1 个文件被更改,包括 1 次插入7 次删除
  1. 1 7
      plugins/perl/perl.plugin.zsh

+ 1 - 7
plugins/perl/perl.plugin.zsh

@@ -27,7 +27,7 @@ alias latest-perl='curl -s http://www.perl.org/get.html | perl -wlne '\''if (/pe
 
 # Functions #################################################################
 
-# newpl - creates a basic Perl script file and opens it with $EDITOR 
+# newpl - creates a basic Perl script file and opens it with $EDITOR
 newpl () {
 	# set $EDITOR to 'vim' if it is undefined
 	[[ -z $EDITOR ]] && EDITOR=vim
@@ -54,9 +54,3 @@ pgs() { # [find] [replace] [filename]
 prep() { # [pattern] [filename unless STDOUT]
     perl -nle 'print if /'"$1"'/;' $2
 }
-
-# say - append a newline to 'print'
-say() {
-    print "$1\n"
-}
-