def print_highlight(self, context): """print highlight info""" filename = context["filename"] lbegin, lend = context["range"] row, col = context["position"] highlight_tick = context["highlight_tick"] buffer = self.__vim.current.buffer if not Chromatica.is_supported_filetype(buffer.options["filetype"]): return if "tu" not in self.ctx[filename]: return tu = self.ctx[filename]["tu"] syntax.dump_ast_info(tu, buffer.name, lbegin, lend)