From c0f2fc72eccb4127fba5f48ce4b422487d6ec752 Mon Sep 17 00:00:00 2001 From: hut Date: Mon, 13 Apr 2015 12:49:49 +0200 Subject: moved "doc/examples" to "examples" for more visibility --- doc/examples/plugin_new_macro.py | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 doc/examples/plugin_new_macro.py (limited to 'doc/examples/plugin_new_macro.py') diff --git a/doc/examples/plugin_new_macro.py b/doc/examples/plugin_new_macro.py deleted file mode 100644 index 159a92f2..00000000 --- a/doc/examples/plugin_new_macro.py +++ /dev/null @@ -1,19 +0,0 @@ -# Compatible with ranger 1.6.* -# -# This plugin adds the new macro %date which is substituted with the current -# date in commands that allow macros. You can test it with the command -# ":shell echo %date; read" - -# Save the original macro function -import ranger.core.actions -old_get_macros = ranger.core.actions.Actions._get_macros - -# Define a new macro function -import time -def get_macros_with_date(self): - macros = old_get_macros(self) - macros['date'] = time.strftime('%m/%d/%Y') - return macros - -# Overwrite the old one -ranger.core.actions.Actions._get_macros = get_macros_with_date -- cgit 1.4.1-2-gfad0