DoxyDoxygen icon indicating copy to clipboard operation
DoxyDoxygen copied to clipboard

Alt + Q on file header description

Open davidAlgis opened this issue 2 years ago • 7 comments

Hi,

First, thanks for this nice plugin, it's really useful to me ! I wanted to override the auto-filled description for file header in "block_layout", I add this configuration:

{
                "tags": [
                    "",
                    "@file         {file_base_name}",
                    "",
                    "@brief        Description of the file",
                    "",
                    "@author       {user_name}",
                    "",
                    "@company      Company_name",
                    "Copyright © Company_name. All rights reserved.",
                    "",
                ],
                "context": [
                    {
                        "key": "row",
                        "operator": "equal",
                        "operand": "0"
                    },
                    {
                        "key": "kind",
                        "operator": "equal",
                        "operand": ""
                    }
                ]
            },

However, when I trigger Alt+S on the first line (which is empty) of any file, it doesn't do anything or if I'm in a class it will directly go on the comment of the class below. The context seems good, as I only copy/paste the one from "block_layout_default". Is there something I don't understand ?

Thanks in advance.

davidAlgis avatar Aug 31 '23 09:08 davidAlgis