summary refs log blame commit diff stats
path: root/examples/plugin_new_macro.py
blob: 0e44cdd363d46984569773fcdd142b8028d79360 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                            
 



                                                                            

                                                        

           
                          
 

                                                                                            

 
                             
                               
                                 

                                              
 
 
                       
                                                                                                  
# Compatible with ranger 1.6.0 through 1.7.*
#
# 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"

from __future__ import (absolute_import, print_function)

import time

import ranger.core.actions

# Save the original macro function
GET_MACROS_OLD = ranger.core.actions.Actions._get_macros  # pylint: disable=protected-access


# Define a new macro function
def get_macros_with_date(self):
    macros = GET_MACROS_OLD(self)
    macros['date'] = time.strftime('%m/%d/%Y')
    return macros


# Overwrite the old one
ranger.core.actions.Actions._get_macros = get_macros_with_date  # pylint: disable=protected-access