{"id":13574745,"url":"https://github.com/xonixx/intellij-awk","last_synced_at":"2026-02-15T00:33:30.040Z","repository":{"id":40386301,"uuid":"351255587","full_name":"xonixx/intellij-awk","owner":"xonixx","description":"The missing IntelliJ IDEA language support plugin for AWK","archived":false,"fork":false,"pushed_at":"2025-04-21T23:47:36.000Z","size":1629,"stargazers_count":46,"open_issues_count":33,"forks_count":2,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-04-22T00:26:06.460Z","etag":null,"topics":["awk","gawk","intellij","intellij-plugin","programming-language"],"latest_commit_sha":null,"homepage":"https://plugins.jetbrains.com/plugin/17037-awk-support","language":"Awk","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/xonixx.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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}},"created_at":"2021-03-24T23:52:55.000Z","updated_at":"2025-04-19T21:21:47.000Z","dependencies_parsed_at":"2024-01-07T20:45:21.196Z","dependency_job_id":"768d66eb-c7b7-4070-b54b-5f7309711e5a","html_url":"https://github.com/xonixx/intellij-awk","commit_stats":null,"previous_names":[],"tags_count":26,"template":false,"template_full_name":null,"purl":"pkg:github/xonixx/intellij-awk","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xonixx%2Fintellij-awk","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xonixx%2Fintellij-awk/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xonixx%2Fintellij-awk/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xonixx%2Fintellij-awk/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/xonixx","download_url":"https://codeload.github.com/xonixx/intellij-awk/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xonixx%2Fintellij-awk/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29461911,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-14T22:42:09.113Z","status":"ssl_error","status_checked_at":"2026-02-14T22:42:05.053Z","response_time":53,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["awk","gawk","intellij","intellij-plugin","programming-language"],"created_at":"2024-08-01T15:00:54.343Z","updated_at":"2026-02-15T00:33:30.022Z","avatar_url":"https://github.com/xonixx.png","language":"Awk","funding_links":[],"categories":["Awk"],"sub_categories":[],"readme":"[![Stand With Ukraine](https://raw.githubusercontent.com/vshymanskyy/StandWithUkraine/main/banner-direct-single.svg)](https://stand-with-ukraine.pp.ua)\n\n# intellij-awk\n\n[![Unit Tests](https://github.com/xonixx/intellij-awk/actions/workflows/run-tests.yml/badge.svg)](https://github.com/xonixx/intellij-awk/actions/workflows/run-tests.yml)\n\nThe missing IntelliJ IDEA language support plugin for [AWK](https://en.wikipedia.org/wiki/AWK)\n  \n![](screenshot1.png \"Awk IDE\")\n\n## Motivation\n\n- At the moment there ~~is~~was no AWK plugin for IDEA, which ~~is~~was a pity.\n- Help me develop [some](https://github.com/xonixx/makesure) [of](https://github.com/xonixx/gron.awk) [my](https://github.com/xonixx/fhtagn) own projects in AWK.\n- Interested to sharpen my Java skills and learn some IDEA internals.\n\n## Goals v0.0.1 \\[done]\n\n- [x] Support basic AWK code highlighting\n- Support basic AWK code navigations \n  - [x] show structure\n  - [x] go to declaration\n  - [x] find usages\n- Support completion\n  - [x] function names \n  - [x] variable names \n  - [x] keywords \n- [x] Support only POSIX subset (aka BWK), w/o Gawk additions (this can be added later)\n- Refactoring support\n  - [x] rename variable\n  - [x] rename function\n- [x] Basic auto-format\n\n## Goals v0.2.0 \\[done]\n\n- [x] Add GAWK parsing mode\n\n## Goals v0.3.0 \\[done]\n\n- [x] Enforce variable naming convention (the idea taken from [How I Write AWK Code](https://github.com/ttv1/aok/blob/master/docs/codingtips.md#debugging-tools))\n  - [x] `name` for local\n  - [x] `Name` for global\n- [x] Showing parameter hints for functions (Ctrl-P)\n- [x] Showing documentation for built-in functions\n- [x] Showing documentation for built-in variables (`NR`/`NF`/etc.)\n    \n## Parser quirks\n               \nPlease note, due to very ad-hoc nature of AWK syntax (namely some inherent ambiguities in its grammar) the implemented IntelliJ IDEA AWK parser has some minor limitations.\n\nMore details in [parser_quirks.md](doc/parser_quirks.md)\n\n## Implementation details\n\nThe chosen approach to variables resolution described in [variables_resolution.md](doc/variables_resolution.md) \n\n## Useful links\n\n- BWK https://github.com/onetrueawk/awk\n- [Custom language support JetBrains tutorial](https://plugins.jetbrains.com/docs/intellij/custom-language-support.html)\n- [Grammar-Kit tutorial](https://github.com/JetBrains/Grammar-Kit/blob/master/TUTORIAL.md)\n- [JFlex manual](https://www.jflex.de/manual.html)\n- Grammar:\n    - [AWK Grammar in Yacc from BWK](https://github.com/onetrueawk/awk/blob/master/awkgram.y)\n    - [AWK Grammar in Yacc from Gawk](http://git.savannah.gnu.org/cgit/gawk.git/tree/awkgram.y)\n    - https://slebok.github.io/zoo/#awk\n        - [EBNF Grammar](https://github.com/slebok/zoo/blob/master/zoo/awk/manual/fetched/src.grammar.txt)\n        - https://pubs.opengroup.org/onlinepubs/7908799/xcu/awk.html#tag_000_000_108_016\n    - [AWK.sublime-syntax](https://github.com/JohnNilsson/awk-sublime/blob/master/AWK.sublime-syntax)\n        - [Explanation](https://www.sublimetext.com/docs/3/syntax.html)\n- Some other language plugins\n    - [Zig](https://github.com/ice1000/intellij-zig) `Kotlin`\n    - [Solidity](https://github.com/intellij-solidity/intellij-solidity) `Kotlin`\n    - [D language](https://github.com/intellij-dlanguage/intellij-dlanguage) `Java` `Kotlin`\n    - [Haxe](https://github.com/HaxeFoundation/intellij-haxe) `Java`\n    - [Erlang](https://github.com/ignatov/intellij-erlang) `Java` \n    - [Elixir](https://github.com/KronicDeth/intellij-elixir) `Kotlin` `Java`\n    - [Rust](https://github.com/intellij-rust/intellij-rust) `Kotlin`\n    - [Bash](https://github.com/BashSupport/BashSupport) `Java`\n    - [Zephir](https://github.com/zephir-lang/idea-plugin) `Kotlin`\n    - [IDEA sh](https://github.com/JetBrains/intellij-community/tree/master/plugins/sh) `Java`\n    - [IDEA properties](https://github.com/JetBrains/intellij-community/tree/master/plugins/properties) `Java` \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxonixx%2Fintellij-awk","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fxonixx%2Fintellij-awk","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxonixx%2Fintellij-awk/lists"}