├── .editorconfig ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .rustfmt.toml ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md └── src ├── JetBrainsMono-Regular.ttf ├── main.rs └── renderer ├── code_view ├── code.rs ├── gutter.rs ├── highlight.rs └── mod.rs ├── code_view_tabs.rs ├── fs_tree.rs ├── input.rs ├── mod.rs ├── rectangle.rs └── rectangle_shader.wgsl /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crowlKats/devcode/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crowlKats/devcode/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | 3 | /.idea 4 | /.vscode 5 | -------------------------------------------------------------------------------- /.rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crowlKats/devcode/HEAD/.rustfmt.toml -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crowlKats/devcode/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crowlKats/devcode/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crowlKats/devcode/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crowlKats/devcode/HEAD/README.md -------------------------------------------------------------------------------- /src/JetBrainsMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crowlKats/devcode/HEAD/src/JetBrainsMono-Regular.ttf -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crowlKats/devcode/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/renderer/code_view/code.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crowlKats/devcode/HEAD/src/renderer/code_view/code.rs -------------------------------------------------------------------------------- /src/renderer/code_view/gutter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crowlKats/devcode/HEAD/src/renderer/code_view/gutter.rs -------------------------------------------------------------------------------- /src/renderer/code_view/highlight.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crowlKats/devcode/HEAD/src/renderer/code_view/highlight.rs -------------------------------------------------------------------------------- /src/renderer/code_view/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crowlKats/devcode/HEAD/src/renderer/code_view/mod.rs -------------------------------------------------------------------------------- /src/renderer/code_view_tabs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crowlKats/devcode/HEAD/src/renderer/code_view_tabs.rs -------------------------------------------------------------------------------- /src/renderer/fs_tree.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crowlKats/devcode/HEAD/src/renderer/fs_tree.rs -------------------------------------------------------------------------------- /src/renderer/input.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crowlKats/devcode/HEAD/src/renderer/input.rs -------------------------------------------------------------------------------- /src/renderer/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crowlKats/devcode/HEAD/src/renderer/mod.rs -------------------------------------------------------------------------------- /src/renderer/rectangle.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crowlKats/devcode/HEAD/src/renderer/rectangle.rs -------------------------------------------------------------------------------- /src/renderer/rectangle_shader.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crowlKats/devcode/HEAD/src/renderer/rectangle_shader.wgsl --------------------------------------------------------------------------------