{"id":31658084,"url":"https://github.com/tong/nvim-dap-haxe","last_synced_at":"2026-05-18T10:37:57.199Z","repository":{"id":318366842,"uuid":"1070991253","full_name":"tong/nvim-dap-haxe","owner":"tong","description":null,"archived":false,"fork":false,"pushed_at":"2025-10-06T18:48:38.000Z","size":220,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-10-06T20:28:10.851Z","etag":null,"topics":["dap","debug","haxe","nvim"],"latest_commit_sha":null,"homepage":"","language":"Lua","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/tong.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-10-06T18:02:26.000Z","updated_at":"2025-10-06T18:48:41.000Z","dependencies_parsed_at":"2025-10-06T20:30:13.090Z","dependency_job_id":"d2c920ee-3731-44d7-9494-6f1888e4e178","html_url":"https://github.com/tong/nvim-dap-haxe","commit_stats":null,"previous_names":["tong/nvim-dap-haxe"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/tong/nvim-dap-haxe","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tong%2Fnvim-dap-haxe","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tong%2Fnvim-dap-haxe/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tong%2Fnvim-dap-haxe/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tong%2Fnvim-dap-haxe/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tong","download_url":"https://codeload.github.com/tong/nvim-dap-haxe/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tong%2Fnvim-dap-haxe/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278795057,"owners_count":26047135,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-07T02:00:06.786Z","response_time":59,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["dap","debug","haxe","nvim"],"created_at":"2025-10-07T15:12:11.734Z","updated_at":"2025-10-07T15:12:17.116Z","avatar_url":"https://github.com/tong.png","language":"Lua","funding_links":[],"categories":[],"sub_categories":[],"readme":"# nvim-dap-haxe\n\nA [nvim-dap](https://github.com/mfussenegger/nvim-dap) extension providing configurations for launching Haxe debug targets.\n\n## Features\n\n- Sets up DAP adapters for Haxe's `eval` interpreter, HashLink, and JavaScript (node).\n- Provides launch configurations for various Haxe targets and workflows.\n- Automatic detection of program files (`.hl`, `.js`).\n- Parsing of `.hxml` files to generate DAP configurations on the fly.\n- Dynamic argument generation for `eval` adapter (e.g., debug current function or file).\n\n## Installation\n\nInstall with your favorite plugin manager.\n\n### [lazy.nvim](https://github.com/folke/lazy.nvim)\n\n```lua\n{\n    \"tong/nvim-dap-haxe\",\n    dependencies = { \"mfussenegger/nvim-dap\" },\n    config = function()\n        require(\"dap-haxe\").setup({\n            -- Your custom options here\n        })\n    end,\n}\n```\n\n## Configuration\n\nYou can override the default settings by passing an options table to the `setup` function.\n\nHere is an example of how to specify the path to your main JavaScript file:\n\n```lua\nrequire(\"dap-haxe\").setup({\n    javascript = {\n        -- If not specified, the plugin will search for *.js files in your workspace.\n        program = \"/path/to/your/main.js\",\n    },\n})\n```\n\n## Usage\n\nThis plugin provides several debug configurations under the `haxe` and `hxml` types. When you start debugging (e.g., with `require(\"dap\").continue()`), you will be able to choose from the following configurations:\n\n### `haxe` type\n\n- **`eval:function_call`**: Runs the current function under the cursor using Haxe's interpreter.\n- **`eval:run_file`**: Runs the current Haxe file using Haxe's interpreter.\n- **`hashlink`**: Launches a HashLink application. It will search for `.hl` files in your workspace and prompt you to choose one if multiple are found.\n- **`javascript`**: Launches a JavaScript application using Node.js. It searches for `.js` files with a corresponding `.js.map` source map file.\n- **`haxe:hxml`**: Prompts you to select an `.hxml` file to create a launch configuration from.\n\n### `hxml` type\n\n- **`hxml:current`**: Creates a launch configuration from the currently open `.hxml` file.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftong%2Fnvim-dap-haxe","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftong%2Fnvim-dap-haxe","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftong%2Fnvim-dap-haxe/lists"}