def _action()

in hexforge_modules/search_modules.py [0:0]


    def _action(self) -> None:

        data = helper.get_highlighted_string_from_decompiler()
        try:
            formatted_url = f"https://grep.app/search?q={data}"
            ida_kernwin.open_url(formatted_url)
            
        except Exception as e:
            print(e)
            return None