diff options
author | hut <hut@lavabit.com> | 2013-03-09 18:48:02 +0100 |
---|---|---|
committer | hut <hut@lavabit.com> | 2013-03-09 18:48:02 +0100 |
commit | d2c7d024290ee95afa418975c728ad64172dcfec (patch) | |
tree | eea0659eab7bb0c7b9cc2026468c840d7f22a5c9 /doc/examples/plugin_new_macro.py | |
parent | 62af277734f05f27f20467393c9d997012ddd2b4 (diff) | |
download | ranger-d2c7d024290ee95afa418975c728ad64172dcfec.tar.gz |
move examples to doc/examples
Diffstat (limited to 'doc/examples/plugin_new_macro.py')
-rw-r--r-- | doc/examples/plugin_new_macro.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/doc/examples/plugin_new_macro.py b/doc/examples/plugin_new_macro.py new file mode 100644 index 00000000..159a92f2 --- /dev/null +++ b/doc/examples/plugin_new_macro.py @@ -0,0 +1,19 @@ +# 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 |