├── pkg └── .gitkeep ├── internal ├── db │ ├── .gitkeep │ ├── models.go │ ├── queries.sql │ ├── db.go │ ├── init.go │ └── queries.sql.go ├── ai │ ├── context │ │ └── .gitkeep │ ├── llm │ │ └── .gitkeep │ └── vector │ │ └── .gitkeep ├── editor │ ├── git │ │ └── .gitkeep │ └── parser │ │ └── .gitkeep ├── server │ └── .gitkeep ├── terminal │ ├── types.go │ ├── events.go │ └── terminal.go ├── command │ ├── root.go │ └── db.go └── service │ ├── projects.go │ ├── config.go │ └── terminal.go ├── frontend ├── .gitignore ├── src │ ├── lib │ │ ├── terminal │ │ │ └── types.ts │ │ ├── components │ │ │ ├── KeyboardManager.svelte │ │ │ ├── palletes │ │ │ │ ├── components │ │ │ │ │ ├── ResultsList.svelte │ │ │ │ │ ├── CommandItem.svelte │ │ │ │ │ ├── FileItem.svelte │ │ │ │ │ └── BasePalette.svelte │ │ │ │ ├── CommandPalette.svelte │ │ │ │ └── BranchPalette.svelte │ │ │ ├── DropdownMenu.svelte │ │ │ ├── Select.svelte │ │ │ ├── Button.svelte │ │ │ ├── Snow.svelte │ │ │ ├── Tooltip.svelte │ │ │ ├── Modal.svelte │ │ │ ├── ContextMenu.svelte │ │ │ ├── Input.svelte │ │ │ ├── ResizeHandle.svelte │ │ │ └── RecentProjects.svelte │ │ ├── editor │ │ │ ├── git │ │ │ │ ├── changes │ │ │ │ │ ├── GitDiffViewer.svelte │ │ │ │ │ ├── GitDiffHeader.svelte │ │ │ │ │ ├── GitChangesView.svelte │ │ │ │ │ └── DiffHeader.svelte │ │ │ │ ├── GitRepositoryStatus.svelte │ │ │ │ ├── GitStagedChanges.svelte │ │ │ │ ├── GitCommitItem.svelte │ │ │ │ ├── GitCommitSection.svelte │ │ │ │ ├── GitUnstagedChanges.svelte │ │ │ │ └── GitStatusItem.svelte │ │ │ ├── LeftSidebar.svelte │ │ │ ├── Breadcrumbs.svelte │ │ │ ├── panes │ │ │ │ ├── ExplorerPane.svelte │ │ │ │ ├── BottomPane.svelte │ │ │ │ └── GitPane.svelte │ │ │ ├── BottomBar.svelte │ │ │ ├── Topbar.svelte │ │ │ ├── RightSidebar.svelte │ │ │ └── explorer │ │ │ │ └── FileTree.svelte │ │ ├── wailsjs │ │ │ ├── runtime │ │ │ │ ├── package.json │ │ │ │ └── runtime.js │ │ │ └── go │ │ │ │ └── main │ │ │ │ ├── App.d.ts │ │ │ │ └── App.js │ │ ├── utils │ │ │ ├── time.ts │ │ │ ├── languageMap.ts │ │ │ ├── fuzzySearch.ts │ │ │ └── gitSort.ts │ │ └── actions │ │ │ └── tooltip.ts │ ├── routes │ │ ├── Configs.svelte │ │ └── Welcome.svelte │ ├── app.css │ ├── vite-env.d.ts │ ├── assets │ │ ├── images │ │ │ └── logo-universal.png │ │ └── fonts │ │ │ ├── nunito-v16-latin-regular.woff2 │ │ │ └── OFL.txt │ ├── main.js │ ├── types │ │ ├── index.ts │ │ ├── git.ts │ │ ├── ui.ts │ │ ├── keyboard.ts │ │ └── files.ts │ ├── stores │ │ ├── bottomPaneStore.ts │ │ ├── editorSessionStore.ts │ │ ├── editorInstanceStore.ts │ │ ├── commandStore.ts │ │ ├── editorConfigStore.ts │ │ ├── focusStore.ts │ │ ├── terminalStore.ts │ │ ├── editorStateStore.ts │ │ └── project.ts │ └── App.svelte ├── package.json.md5 ├── .vscode │ └── extensions.json ├── postcss.config.js ├── svelte.config.js ├── tailwind.config.js ├── tsconfig.node.json ├── index.html ├── tsconfig.json ├── vite.config.js ├── package.json └── README.md ├── .github ├── FUNDING.yml └── workflows │ └── editai-release.yaml ├── db └── migrations │ ├── embed.go │ └── 0001_initial_schema.sql ├── sqlc.yaml ├── cmd ├── edit4i │ └── main.go └── server │ └── main.go ├── example.env ├── docker-compose.yaml ├── .gitignore ├── wails.json ├── main.go ├── Makefile ├── examples ├── tools │ └── web_scraper.yaml └── .editai │ ├── knowledge │ └── codestyle │ │ └── javascript.yaml │ ├── workflows │ └── code-review.yaml │ └── config.yaml ├── .docker └── wails │ └── Dockerfile ├── go.mod └── README.md /pkg/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/db/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- 1 | tmp/* -------------------------------------------------------------------------------- /internal/ai/context/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ai/llm/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/ai/vector/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/editor/git/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/server/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/editor/parser/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/lib/terminal/types.ts: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [nathabonfim59] 2 | -------------------------------------------------------------------------------- /frontend/src/routes/Configs.svelte: -------------------------------------------------------------------------------- 1 |
42 | {commit.message} 43 |
44 |45 | {commit.author} 46 |
47 |No problems found.
39 |No output to display.
44 |Are you sure you want to discard changes in {fileToDiscard}?
70 |This action cannot be undone.
71 |119 | {project.Path} 120 |
121 |61 | Your intelligent coding companion 62 |
63 |100 | {link.description} 101 |
102 |122 | Get involved with EditAI's growing community of 123 | developers. 124 |
125 | 126 |