Skip to content

farre/midas-pretty

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

Midas pretty printers.

This repository contains a collection of pretty printers for the Midas Debug Adapter.

Usage

To use these pretty printers you need to install the Midas VSCode Debug Adapter Extension. Currently you need to use the pre-release version, so make sure to switch to that if needed.

To make Midas aware of these pretty printers, clone this repository and edit your launch.json file to look something like:

{
    "version": "0.2.0",
    "configurations": [
        {
            "type": "midas-rr",
            "request": "attach",
            "name": "Launch replay session",
            "use-dap": true,
            "trace": "Off",
            "cwd": "${workspaceFolder}",
            "setupCommands": [
                "set sysroot /",
                "set debuginfod enabled off",
                "set auto-load safe-path /"
            ],
            "prettyPrinterPath": "/path/to/midas-pretty/printers/"
        }
    ]
}

The important part is setting "prettyPrinterPath to point to the directory printers in the directory where you cloned this repository.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published