From 068d0d00750592874a7d8e1a45e75dd0d8b78d69 Mon Sep 17 00:00:00 2001 From: Mark Tareshawty Date: Sat, 19 Jan 2013 00:00:32 -0500 Subject: [PATCH] fixed function namescape --- plugins/osx/osx.plugin.zsh | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/plugins/osx/osx.plugin.zsh b/plugins/osx/osx.plugin.zsh index f278d4f8d..5114054b1 100644 --- a/plugins/osx/osx.plugin.zsh +++ b/plugins/osx/osx.plugin.zsh @@ -154,3 +154,12 @@ function trash() { IFS=$temp_ifs } +function viewDownloadsList() { + sqlite3 ~/Library/Preferences/com.apple.LaunchServices.QuarantineEventsV*\ + 'select LSQuarantineDataURLString from LSQuarantineEvent' +} + +function removeDownloadList() { + sqlite3 ~/Library/Preferences/com.apple.LaunchServices.QuarantineEventsV*\ + 'delete from LSQuarantineEvent' +}