From 21260130477e35e9530aa057bbc091f1e98a0c49 Mon Sep 17 00:00:00 2001
From: Justin Hileman <justin@justinhileman.info>
Date: Sun, 31 May 2015 08:30:49 -0700
Subject: [PATCH] [split] Move percol plugin to oh-my-fish/plugin-percol

https://github.com/oh-my-fish/plugin-percol
---
 plugins/percol/README                     | 7 -------
 plugins/percol/percol_select_history.fish | 8 --------
 2 files changed, 15 deletions(-)
 delete mode 100644 plugins/percol/README
 delete mode 100644 plugins/percol/percol_select_history.fish

diff --git a/plugins/percol/README b/plugins/percol/README
deleted file mode 100644
index e1d964f..0000000
--- a/plugins/percol/README
+++ /dev/null
@@ -1,7 +0,0 @@
-Please bind percol_select_history in your favorite key.
-
-If you'd like to bind CTRL+R
-
-function fish_user_key_bindings
-  bind \cr percol_select_history
-end
diff --git a/plugins/percol/percol_select_history.fish b/plugins/percol/percol_select_history.fish
deleted file mode 100644
index 533716d..0000000
--- a/plugins/percol/percol_select_history.fish
+++ /dev/null
@@ -1,8 +0,0 @@
-function percol_select_history
-  history|percol|read foo
-  if [ $foo ]
-    commandline $foo
-  else
-    commandline ''
-  end
-end