├── .editorconfig ├── .gitignore ├── .gitlab-ci.yml ├── .gitmodules ├── .proton.json ├── COPYING ├── README.md ├── TODO.md ├── com.raggesilver.Proton.json ├── data ├── com.raggesilver.Proton.appdata.xml.in ├── com.raggesilver.Proton.desktop.in ├── com.raggesilver.Proton.gschema.xml ├── icons │ ├── hicolor │ │ ├── render-symbolic.py │ │ └── scalable │ │ │ ├── actions │ │ │ ├── proton-build-symbolic.svg │ │ │ ├── replace-one-symbolic.svg │ │ │ ├── view-bottom-panel-symbolic.svg │ │ │ ├── view-left-panel-symbolic.svg │ │ │ ├── view-right-panel-symbolic.svg │ │ │ ├── view-split-horizontal-symbolic.svg │ │ │ └── view-split-vertical-symbolic.svg │ │ │ ├── apps │ │ │ └── com.raggesilver.Proton.svg │ │ │ └── mimetypes │ │ │ ├── text-x-c-symbolic.svg │ │ │ ├── text-x-c.svg │ │ │ ├── text-x-cpp-symbolic.svg │ │ │ ├── text-x-cpp.svg │ │ │ ├── text-x-css-symbolic.svg │ │ │ ├── text-x-css.svg │ │ │ ├── text-x-editorconfig-symbolic.svg │ │ │ ├── text-x-editorconfig.svg │ │ │ ├── text-x-git-symbolic.svg │ │ │ ├── text-x-git.svg │ │ │ ├── text-x-gitlab-symbolic.svg │ │ │ ├── text-x-gitlab.svg │ │ │ ├── text-x-js-symbolic.svg │ │ │ ├── text-x-js.svg │ │ │ ├── text-x-json-symbolic.svg │ │ │ ├── text-x-json.svg │ │ │ ├── text-x-makefile-symbolic.svg │ │ │ ├── text-x-makefile.svg │ │ │ ├── text-x-markdown-symbolic.svg │ │ │ ├── text-x-markdown.svg │ │ │ ├── text-x-meson-symbolic.svg │ │ │ ├── text-x-meson.svg │ │ │ ├── text-x-script2-symbolic.svg │ │ │ ├── text-x-script2.svg │ │ │ ├── text-x-vala-symbolic.svg │ │ │ ├── text-x-vala.svg │ │ │ ├── text-x-xml-symbolic.svg │ │ │ └── text-x-xml.svg │ └── meson.build ├── meson.build └── themes │ └── proton-dark.xml ├── meson.build ├── po ├── LINGUAS ├── POTFILES └── meson.build ├── src ├── about_window.vala ├── application.vala ├── config.vala.in ├── layouts │ ├── bottom_panel.ui │ ├── command_palette.ui │ ├── editor_grid_page.ui │ ├── editor_search_box.ui │ ├── editor_stack.ui │ ├── global_search.ui │ ├── global_search_result.ui │ ├── open_window.ui │ ├── preferences_new.ui │ ├── preferences_window.ui │ ├── proton_grid_stack.ui │ ├── status_box.ui │ ├── treeview_popover.ui │ └── window.ui ├── main.vala ├── meson.build ├── open_window.vala ├── plugins │ └── meson.build ├── preferences_window.vala ├── proton.gresource.xml ├── proton_core.deps ├── resources │ └── style.css ├── services │ ├── Core.vala │ ├── EditorManager.vala │ ├── FileIconProvider.vala │ ├── PluginManager.vala │ └── Settings.vala ├── utils │ ├── File.vala │ ├── assert │ │ ├── assert.c │ │ ├── assert.h │ │ └── assert.vala │ ├── git │ │ └── Cloner.vala │ ├── terminal │ │ └── terminal.vala │ └── utils.vala ├── widgets │ ├── BottomPanel.vala │ ├── CommandPalette.vala │ ├── Container.vala │ ├── Loadable.vala │ ├── MultiPaned.vala │ ├── SortableBox.vala │ ├── StatusBox.vala │ ├── TreeView.vala │ ├── editor │ │ ├── Editor.vala │ │ ├── EditorGridPage.vala │ │ └── EditorSearchBox.vala │ ├── global-search │ │ ├── GlobalSearch.vala │ │ └── GlobalSearchResult.vala │ ├── ide-grid │ │ ├── IdeGrid.vala │ │ ├── IdeGridPage.vala │ │ └── IdeGridStack.vala │ ├── meson.build │ └── terminal │ │ ├── Terminal.vala │ │ ├── TerminalGridPage.vala │ │ └── TerminalTab.vala └── window.vala └── test.sh /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/.gitmodules -------------------------------------------------------------------------------- /.proton.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/.proton.json -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/TODO.md -------------------------------------------------------------------------------- /com.raggesilver.Proton.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/com.raggesilver.Proton.json -------------------------------------------------------------------------------- /data/com.raggesilver.Proton.appdata.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/data/com.raggesilver.Proton.appdata.xml.in -------------------------------------------------------------------------------- /data/com.raggesilver.Proton.desktop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/data/com.raggesilver.Proton.desktop.in -------------------------------------------------------------------------------- /data/com.raggesilver.Proton.gschema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/data/com.raggesilver.Proton.gschema.xml -------------------------------------------------------------------------------- /data/icons/hicolor/render-symbolic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/data/icons/hicolor/render-symbolic.py -------------------------------------------------------------------------------- /data/icons/hicolor/scalable/actions/proton-build-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/data/icons/hicolor/scalable/actions/proton-build-symbolic.svg -------------------------------------------------------------------------------- /data/icons/hicolor/scalable/actions/replace-one-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/data/icons/hicolor/scalable/actions/replace-one-symbolic.svg -------------------------------------------------------------------------------- /data/icons/hicolor/scalable/actions/view-bottom-panel-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/data/icons/hicolor/scalable/actions/view-bottom-panel-symbolic.svg -------------------------------------------------------------------------------- /data/icons/hicolor/scalable/actions/view-left-panel-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/data/icons/hicolor/scalable/actions/view-left-panel-symbolic.svg -------------------------------------------------------------------------------- /data/icons/hicolor/scalable/actions/view-right-panel-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/data/icons/hicolor/scalable/actions/view-right-panel-symbolic.svg -------------------------------------------------------------------------------- /data/icons/hicolor/scalable/actions/view-split-horizontal-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/data/icons/hicolor/scalable/actions/view-split-horizontal-symbolic.svg -------------------------------------------------------------------------------- /data/icons/hicolor/scalable/actions/view-split-vertical-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/data/icons/hicolor/scalable/actions/view-split-vertical-symbolic.svg -------------------------------------------------------------------------------- /data/icons/hicolor/scalable/apps/com.raggesilver.Proton.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/data/icons/hicolor/scalable/apps/com.raggesilver.Proton.svg -------------------------------------------------------------------------------- /data/icons/hicolor/scalable/mimetypes/text-x-c-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/data/icons/hicolor/scalable/mimetypes/text-x-c-symbolic.svg -------------------------------------------------------------------------------- /data/icons/hicolor/scalable/mimetypes/text-x-c.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/data/icons/hicolor/scalable/mimetypes/text-x-c.svg -------------------------------------------------------------------------------- /data/icons/hicolor/scalable/mimetypes/text-x-cpp-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/data/icons/hicolor/scalable/mimetypes/text-x-cpp-symbolic.svg -------------------------------------------------------------------------------- /data/icons/hicolor/scalable/mimetypes/text-x-cpp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/data/icons/hicolor/scalable/mimetypes/text-x-cpp.svg -------------------------------------------------------------------------------- /data/icons/hicolor/scalable/mimetypes/text-x-css-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/data/icons/hicolor/scalable/mimetypes/text-x-css-symbolic.svg -------------------------------------------------------------------------------- /data/icons/hicolor/scalable/mimetypes/text-x-css.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/data/icons/hicolor/scalable/mimetypes/text-x-css.svg -------------------------------------------------------------------------------- /data/icons/hicolor/scalable/mimetypes/text-x-editorconfig-symbolic.svg: -------------------------------------------------------------------------------- 1 | /home/pqueiroz/Projects/proton/data/icons/hicolor/scalable/mimetypes/text-x-editorconfig.svg -------------------------------------------------------------------------------- /data/icons/hicolor/scalable/mimetypes/text-x-editorconfig.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/data/icons/hicolor/scalable/mimetypes/text-x-editorconfig.svg -------------------------------------------------------------------------------- /data/icons/hicolor/scalable/mimetypes/text-x-git-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/data/icons/hicolor/scalable/mimetypes/text-x-git-symbolic.svg -------------------------------------------------------------------------------- /data/icons/hicolor/scalable/mimetypes/text-x-git.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/data/icons/hicolor/scalable/mimetypes/text-x-git.svg -------------------------------------------------------------------------------- /data/icons/hicolor/scalable/mimetypes/text-x-gitlab-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/data/icons/hicolor/scalable/mimetypes/text-x-gitlab-symbolic.svg -------------------------------------------------------------------------------- /data/icons/hicolor/scalable/mimetypes/text-x-gitlab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/data/icons/hicolor/scalable/mimetypes/text-x-gitlab.svg -------------------------------------------------------------------------------- /data/icons/hicolor/scalable/mimetypes/text-x-js-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/data/icons/hicolor/scalable/mimetypes/text-x-js-symbolic.svg -------------------------------------------------------------------------------- /data/icons/hicolor/scalable/mimetypes/text-x-js.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/data/icons/hicolor/scalable/mimetypes/text-x-js.svg -------------------------------------------------------------------------------- /data/icons/hicolor/scalable/mimetypes/text-x-json-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/data/icons/hicolor/scalable/mimetypes/text-x-json-symbolic.svg -------------------------------------------------------------------------------- /data/icons/hicolor/scalable/mimetypes/text-x-json.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/data/icons/hicolor/scalable/mimetypes/text-x-json.svg -------------------------------------------------------------------------------- /data/icons/hicolor/scalable/mimetypes/text-x-makefile-symbolic.svg: -------------------------------------------------------------------------------- 1 | /home/pqueiroz/Projects/proton/data/icons/hicolor/scalable/mimetypes/text-x-makefile.svg -------------------------------------------------------------------------------- /data/icons/hicolor/scalable/mimetypes/text-x-makefile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/data/icons/hicolor/scalable/mimetypes/text-x-makefile.svg -------------------------------------------------------------------------------- /data/icons/hicolor/scalable/mimetypes/text-x-markdown-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/data/icons/hicolor/scalable/mimetypes/text-x-markdown-symbolic.svg -------------------------------------------------------------------------------- /data/icons/hicolor/scalable/mimetypes/text-x-markdown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/data/icons/hicolor/scalable/mimetypes/text-x-markdown.svg -------------------------------------------------------------------------------- /data/icons/hicolor/scalable/mimetypes/text-x-meson-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/data/icons/hicolor/scalable/mimetypes/text-x-meson-symbolic.svg -------------------------------------------------------------------------------- /data/icons/hicolor/scalable/mimetypes/text-x-meson.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/data/icons/hicolor/scalable/mimetypes/text-x-meson.svg -------------------------------------------------------------------------------- /data/icons/hicolor/scalable/mimetypes/text-x-script2-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/data/icons/hicolor/scalable/mimetypes/text-x-script2-symbolic.svg -------------------------------------------------------------------------------- /data/icons/hicolor/scalable/mimetypes/text-x-script2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/data/icons/hicolor/scalable/mimetypes/text-x-script2.svg -------------------------------------------------------------------------------- /data/icons/hicolor/scalable/mimetypes/text-x-vala-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/data/icons/hicolor/scalable/mimetypes/text-x-vala-symbolic.svg -------------------------------------------------------------------------------- /data/icons/hicolor/scalable/mimetypes/text-x-vala.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/data/icons/hicolor/scalable/mimetypes/text-x-vala.svg -------------------------------------------------------------------------------- /data/icons/hicolor/scalable/mimetypes/text-x-xml-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/data/icons/hicolor/scalable/mimetypes/text-x-xml-symbolic.svg -------------------------------------------------------------------------------- /data/icons/hicolor/scalable/mimetypes/text-x-xml.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/data/icons/hicolor/scalable/mimetypes/text-x-xml.svg -------------------------------------------------------------------------------- /data/icons/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/data/icons/meson.build -------------------------------------------------------------------------------- /data/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/data/meson.build -------------------------------------------------------------------------------- /data/themes/proton-dark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/data/themes/proton-dark.xml -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/meson.build -------------------------------------------------------------------------------- /po/LINGUAS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /po/POTFILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/po/POTFILES -------------------------------------------------------------------------------- /po/meson.build: -------------------------------------------------------------------------------- 1 | i18n.gettext('proton', preset: 'glib') 2 | -------------------------------------------------------------------------------- /src/about_window.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/src/about_window.vala -------------------------------------------------------------------------------- /src/application.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/src/application.vala -------------------------------------------------------------------------------- /src/config.vala.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/src/config.vala.in -------------------------------------------------------------------------------- /src/layouts/bottom_panel.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/src/layouts/bottom_panel.ui -------------------------------------------------------------------------------- /src/layouts/command_palette.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/src/layouts/command_palette.ui -------------------------------------------------------------------------------- /src/layouts/editor_grid_page.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/src/layouts/editor_grid_page.ui -------------------------------------------------------------------------------- /src/layouts/editor_search_box.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/src/layouts/editor_search_box.ui -------------------------------------------------------------------------------- /src/layouts/editor_stack.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/src/layouts/editor_stack.ui -------------------------------------------------------------------------------- /src/layouts/global_search.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/src/layouts/global_search.ui -------------------------------------------------------------------------------- /src/layouts/global_search_result.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/src/layouts/global_search_result.ui -------------------------------------------------------------------------------- /src/layouts/open_window.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/src/layouts/open_window.ui -------------------------------------------------------------------------------- /src/layouts/preferences_new.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/src/layouts/preferences_new.ui -------------------------------------------------------------------------------- /src/layouts/preferences_window.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/src/layouts/preferences_window.ui -------------------------------------------------------------------------------- /src/layouts/proton_grid_stack.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/src/layouts/proton_grid_stack.ui -------------------------------------------------------------------------------- /src/layouts/status_box.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/src/layouts/status_box.ui -------------------------------------------------------------------------------- /src/layouts/treeview_popover.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/src/layouts/treeview_popover.ui -------------------------------------------------------------------------------- /src/layouts/window.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/src/layouts/window.ui -------------------------------------------------------------------------------- /src/main.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/src/main.vala -------------------------------------------------------------------------------- /src/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/src/meson.build -------------------------------------------------------------------------------- /src/open_window.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/src/open_window.vala -------------------------------------------------------------------------------- /src/plugins/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/src/plugins/meson.build -------------------------------------------------------------------------------- /src/preferences_window.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/src/preferences_window.vala -------------------------------------------------------------------------------- /src/proton.gresource.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/src/proton.gresource.xml -------------------------------------------------------------------------------- /src/proton_core.deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/src/proton_core.deps -------------------------------------------------------------------------------- /src/resources/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/src/resources/style.css -------------------------------------------------------------------------------- /src/services/Core.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/src/services/Core.vala -------------------------------------------------------------------------------- /src/services/EditorManager.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/src/services/EditorManager.vala -------------------------------------------------------------------------------- /src/services/FileIconProvider.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/src/services/FileIconProvider.vala -------------------------------------------------------------------------------- /src/services/PluginManager.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/src/services/PluginManager.vala -------------------------------------------------------------------------------- /src/services/Settings.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/src/services/Settings.vala -------------------------------------------------------------------------------- /src/utils/File.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/src/utils/File.vala -------------------------------------------------------------------------------- /src/utils/assert/assert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/src/utils/assert/assert.c -------------------------------------------------------------------------------- /src/utils/assert/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/src/utils/assert/assert.h -------------------------------------------------------------------------------- /src/utils/assert/assert.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/src/utils/assert/assert.vala -------------------------------------------------------------------------------- /src/utils/git/Cloner.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/src/utils/git/Cloner.vala -------------------------------------------------------------------------------- /src/utils/terminal/terminal.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/src/utils/terminal/terminal.vala -------------------------------------------------------------------------------- /src/utils/utils.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/src/utils/utils.vala -------------------------------------------------------------------------------- /src/widgets/BottomPanel.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/src/widgets/BottomPanel.vala -------------------------------------------------------------------------------- /src/widgets/CommandPalette.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/src/widgets/CommandPalette.vala -------------------------------------------------------------------------------- /src/widgets/Container.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/src/widgets/Container.vala -------------------------------------------------------------------------------- /src/widgets/Loadable.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/src/widgets/Loadable.vala -------------------------------------------------------------------------------- /src/widgets/MultiPaned.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/src/widgets/MultiPaned.vala -------------------------------------------------------------------------------- /src/widgets/SortableBox.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/src/widgets/SortableBox.vala -------------------------------------------------------------------------------- /src/widgets/StatusBox.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/src/widgets/StatusBox.vala -------------------------------------------------------------------------------- /src/widgets/TreeView.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/src/widgets/TreeView.vala -------------------------------------------------------------------------------- /src/widgets/editor/Editor.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/src/widgets/editor/Editor.vala -------------------------------------------------------------------------------- /src/widgets/editor/EditorGridPage.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/src/widgets/editor/EditorGridPage.vala -------------------------------------------------------------------------------- /src/widgets/editor/EditorSearchBox.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/src/widgets/editor/EditorSearchBox.vala -------------------------------------------------------------------------------- /src/widgets/global-search/GlobalSearch.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/src/widgets/global-search/GlobalSearch.vala -------------------------------------------------------------------------------- /src/widgets/global-search/GlobalSearchResult.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/src/widgets/global-search/GlobalSearchResult.vala -------------------------------------------------------------------------------- /src/widgets/ide-grid/IdeGrid.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/src/widgets/ide-grid/IdeGrid.vala -------------------------------------------------------------------------------- /src/widgets/ide-grid/IdeGridPage.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/src/widgets/ide-grid/IdeGridPage.vala -------------------------------------------------------------------------------- /src/widgets/ide-grid/IdeGridStack.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/src/widgets/ide-grid/IdeGridStack.vala -------------------------------------------------------------------------------- /src/widgets/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/src/widgets/meson.build -------------------------------------------------------------------------------- /src/widgets/terminal/Terminal.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/src/widgets/terminal/Terminal.vala -------------------------------------------------------------------------------- /src/widgets/terminal/TerminalGridPage.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/src/widgets/terminal/TerminalGridPage.vala -------------------------------------------------------------------------------- /src/widgets/terminal/TerminalTab.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/src/widgets/terminal/TerminalTab.vala -------------------------------------------------------------------------------- /src/window.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/src/window.vala -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raggesilver/proton/HEAD/test.sh --------------------------------------------------------------------------------