├── .github └── workflows │ ├── linux.yml │ ├── macos.yml │ └── windows.yml ├── .gitignore ├── LICENSE ├── README.md ├── grammars ├── tree-sitter-firrtl.cson ├── tree-sitter-mlir.cson ├── tree-sitter-systemrdl.cson └── tree-sitter-systemverilog.cson ├── keymaps └── main.json ├── lib ├── doppler-view.js ├── editor-registry.js ├── inspector-view.js ├── linter.js ├── logidrom-grafter.js ├── main.js ├── schematic-view.js ├── tree2html.js └── xml-finder.js ├── logo.svg ├── package.json └── styles └── main.less /.github/workflows/linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drom/atom-hide/HEAD/.github/workflows/linux.yml -------------------------------------------------------------------------------- /.github/workflows/macos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drom/atom-hide/HEAD/.github/workflows/macos.yml -------------------------------------------------------------------------------- /.github/workflows/windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drom/atom-hide/HEAD/.github/workflows/windows.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .nyc_output 2 | coverage 3 | package-lock.json 4 | node_modules 5 | tmp 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drom/atom-hide/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drom/atom-hide/HEAD/README.md -------------------------------------------------------------------------------- /grammars/tree-sitter-firrtl.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drom/atom-hide/HEAD/grammars/tree-sitter-firrtl.cson -------------------------------------------------------------------------------- /grammars/tree-sitter-mlir.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drom/atom-hide/HEAD/grammars/tree-sitter-mlir.cson -------------------------------------------------------------------------------- /grammars/tree-sitter-systemrdl.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drom/atom-hide/HEAD/grammars/tree-sitter-systemrdl.cson -------------------------------------------------------------------------------- /grammars/tree-sitter-systemverilog.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drom/atom-hide/HEAD/grammars/tree-sitter-systemverilog.cson -------------------------------------------------------------------------------- /keymaps/main.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drom/atom-hide/HEAD/keymaps/main.json -------------------------------------------------------------------------------- /lib/doppler-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drom/atom-hide/HEAD/lib/doppler-view.js -------------------------------------------------------------------------------- /lib/editor-registry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drom/atom-hide/HEAD/lib/editor-registry.js -------------------------------------------------------------------------------- /lib/inspector-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drom/atom-hide/HEAD/lib/inspector-view.js -------------------------------------------------------------------------------- /lib/linter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drom/atom-hide/HEAD/lib/linter.js -------------------------------------------------------------------------------- /lib/logidrom-grafter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drom/atom-hide/HEAD/lib/logidrom-grafter.js -------------------------------------------------------------------------------- /lib/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drom/atom-hide/HEAD/lib/main.js -------------------------------------------------------------------------------- /lib/schematic-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drom/atom-hide/HEAD/lib/schematic-view.js -------------------------------------------------------------------------------- /lib/tree2html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drom/atom-hide/HEAD/lib/tree2html.js -------------------------------------------------------------------------------- /lib/xml-finder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drom/atom-hide/HEAD/lib/xml-finder.js -------------------------------------------------------------------------------- /logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drom/atom-hide/HEAD/logo.svg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drom/atom-hide/HEAD/package.json -------------------------------------------------------------------------------- /styles/main.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drom/atom-hide/HEAD/styles/main.less --------------------------------------------------------------------------------