├── .editorconfig ├── .github ├── FUNDING.yml └── workflows │ ├── publishToPhcode.yml │ ├── setupRepository.cjs │ └── setupRepository.yml ├── .gitignore ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── README.md ├── atom ├── CHANGELOG.md ├── LICENSE.txt ├── README.md ├── keymaps │ └── atomtoix.json ├── lib │ ├── atomtoix-view.js │ ├── atomtoix.js │ └── common │ │ ├── expressionprocessor.js │ │ ├── expressionprocessor.ts │ │ ├── insertutilities.js │ │ ├── insertutilities.ts │ │ ├── lineutilities.js │ │ ├── lineutilities.ts │ │ ├── transformutilities.js │ │ ├── transformutilities.ts │ │ ├── utility-list.js │ │ ├── utility-list.ts │ │ ├── utility-list_.in.js │ │ ├── utility-list_.in.ts │ │ ├── utilitymanager.js │ │ └── utilitymanager.ts ├── menus │ └── atomtoix.json ├── package.json ├── spec │ ├── atomtoix-spec.js │ └── atomtoix-view-spec.js ├── styles │ └── atomtoix.less ├── tsconfig.json └── tslint.json ├── l10n ├── convert-l10n.py ├── convert-l10n.sh └── l10n.csv ├── linux ├── LICENSE ├── debian │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── files │ ├── install │ ├── postinst │ ├── postrm │ ├── rules │ └── source │ │ └── format ├── tools │ ├── generate-plugin.sh │ ├── replicate-xed-plugins-to-other-editors.sh │ ├── toix_template │ │ ├── toix_template.plugin │ │ └── toix_template.py │ └── update-changelog-timedate.py └── usr │ ├── bin │ └── editortoix │ └── share │ └── editortoix │ ├── gedit │ └── plugins │ │ ├── toix_cyclecase │ │ ├── toix_cyclecase.plugin │ │ └── toix_cyclecase.py │ │ ├── toix_indentonespace │ │ ├── toix_indentonespace.plugin │ │ └── toix_indentonespace.py │ │ ├── toix_outdentonespace │ │ ├── toix_outdentonespace.plugin │ │ └── toix_outdentonespace.py │ │ ├── toix_proxy │ │ ├── locale │ │ │ ├── de │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── editortoix.po │ │ │ ├── en │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── editortoix.po │ │ │ └── pt │ │ │ │ └── LC_MESSAGES │ │ │ │ └── editortoix.po │ │ ├── toix_proxy.py │ │ └── toix_proxy_gedit.py │ │ ├── toix_removeduplicatedlines │ │ ├── toix_removeduplicatedlines.plugin │ │ └── toix_removeduplicatedlines.py │ │ ├── toix_removeemptylines │ │ ├── toix_removeemptylines.plugin │ │ └── toix_removeemptylines.py │ │ ├── toix_reverselines │ │ ├── toix_reverselines.plugin │ │ └── toix_reverselines.py │ │ ├── toix_sortnumericallyascending │ │ ├── toix_sortnumericallyascending.plugin │ │ └── toix_sortnumericallyascending.py │ │ ├── toix_sortnumericallydescending │ │ ├── toix_sortnumericallydescending.plugin │ │ └── toix_sortnumericallydescending.py │ │ └── toix_trimtrailing │ │ ├── toix_trimtrailing.plugin │ │ └── toix_trimtrailing.py │ ├── pluma │ └── plugins │ │ ├── toix_cyclecase │ │ ├── toix_cyclecase.plugin │ │ └── toix_cyclecase.py │ │ ├── toix_indentonespace │ │ ├── toix_indentonespace.plugin │ │ └── toix_indentonespace.py │ │ ├── toix_outdentonespace │ │ ├── toix_outdentonespace.plugin │ │ └── toix_outdentonespace.py │ │ ├── toix_proxy │ │ ├── locale │ │ │ ├── de │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── editortoix.po │ │ │ ├── en │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── editortoix.po │ │ │ └── pt │ │ │ │ └── LC_MESSAGES │ │ │ │ └── editortoix.po │ │ ├── toix_proxy.py │ │ └── toix_proxy_pluma.py │ │ ├── toix_removeduplicatedlines │ │ ├── toix_removeduplicatedlines.plugin │ │ └── toix_removeduplicatedlines.py │ │ ├── toix_removeemptylines │ │ ├── toix_removeemptylines.plugin │ │ └── toix_removeemptylines.py │ │ ├── toix_reverselines │ │ ├── toix_reverselines.plugin │ │ └── toix_reverselines.py │ │ ├── toix_sortnumericallyascending │ │ ├── toix_sortnumericallyascending.plugin │ │ └── toix_sortnumericallyascending.py │ │ ├── toix_sortnumericallydescending │ │ ├── toix_sortnumericallydescending.plugin │ │ └── toix_sortnumericallydescending.py │ │ └── toix_trimtrailing │ │ ├── toix_trimtrailing.plugin │ │ └── toix_trimtrailing.py │ └── xed │ └── plugins │ ├── toix_cyclecase │ ├── toix_cyclecase.plugin │ └── toix_cyclecase.py │ ├── toix_indentonespace │ ├── toix_indentonespace.plugin │ └── toix_indentonespace.py │ ├── toix_outdentonespace │ ├── toix_outdentonespace.plugin │ └── toix_outdentonespace.py │ ├── toix_proxy │ ├── locale │ │ ├── de │ │ │ └── LC_MESSAGES │ │ │ │ └── editortoix.po │ │ ├── en │ │ │ └── LC_MESSAGES │ │ │ │ └── editortoix.po │ │ └── pt │ │ │ └── LC_MESSAGES │ │ │ └── editortoix.po │ ├── toix_proxy.py │ ├── toix_proxy_pluma.py │ └── toix_proxy_xed.py │ ├── toix_removeduplicatedlines │ ├── toix_removeduplicatedlines.plugin │ └── toix_removeduplicatedlines.py │ ├── toix_removeemptylines │ ├── toix_removeemptylines.plugin │ └── toix_removeemptylines.py │ ├── toix_reverselines │ ├── toix_reverselines.plugin │ └── toix_reverselines.py │ ├── toix_sortnumericallyascending │ ├── toix_sortnumericallyascending.plugin │ └── toix_sortnumericallyascending.py │ ├── toix_sortnumericallydescending │ ├── toix_sortnumericallydescending.plugin │ └── toix_sortnumericallydescending.py │ └── toix_trimtrailing │ ├── toix_trimtrailing.plugin │ └── toix_trimtrailing.py ├── phoenix ├── CHANGELOG.md ├── LICENSE.txt ├── assets │ ├── icomoontoix.ttf │ └── icon64.png ├── brackets.d.ts ├── common │ ├── lineutilities.js │ ├── lineutilities.js.map │ ├── lineutilities.ts │ ├── transformutilities.js │ ├── transformutilities.js.map │ ├── transformutilities.ts │ ├── utilitymanager.js │ ├── utilitymanager.js.map │ └── utilitymanager.ts ├── compressors │ ├── README │ └── compiler.jar ├── dom.generated.d.ts ├── html │ ├── htmltemplatestoix.json │ └── optionstoix.html ├── icomoon │ ├── Read Me.txt │ ├── demo-files │ │ ├── demo.css │ │ └── demo.js │ ├── demo.html │ ├── fonts │ │ ├── icomoon.eot │ │ ├── icomoon.svg │ │ └── icomoon.woff │ ├── selection.json │ └── style.css ├── lorem.txt ├── main.js ├── main.ts ├── nls │ ├── de │ │ └── strings.js │ ├── pt │ │ └── strings.js │ ├── root │ │ └── strings.js │ ├── strings.js │ ├── zh-tw │ │ └── strings.js │ └── zh │ │ └── strings.js ├── node │ ├── IXDomains.js │ ├── IXDomains.js.map │ └── IXDomains.ts ├── optionstoix.js ├── optionstoix.ts ├── package-lock.json ├── package.json ├── pdtoolstoix.json ├── prefstoix.js ├── prefstoix.ts ├── snippets.json ├── styles │ └── editortoix.css ├── tools │ ├── build-dist.sh │ ├── nls2txt.js │ └── txt2nls.js ├── tsconfig.json ├── tslint.json ├── uitoix.js └── uitoix.ts └── vsx ├── .eslintrc.js ├── .markdownlint.json ├── .vscodeignore ├── CHANGELOG.md ├── LICENSE.txt ├── README.md ├── assets ├── demo │ ├── break-line-at.gif │ ├── change-case.gif │ ├── cycle-case.gif │ ├── demo.gif │ ├── demo.mp4 │ ├── extract-text.gif │ ├── indent-outdent-lines.gif │ ├── insert-text-at-end.gif │ ├── insert-text-at-start.gif │ ├── join-lines.gif │ └── mixer.gif ├── icon.svg └── icon128.png ├── bundle.js ├── esbuild.js ├── l10n ├── bundle.l10n.de.json └── bundle.l10n.pt-br.json ├── package-lock.json ├── package.json ├── package.nls.de.json ├── package.nls.json ├── package.nls.pt-br.json ├── src ├── common │ ├── clipboardutilities.ts │ ├── expressionprocessor.ts │ ├── insertutilities.ts │ ├── lineutilities.ts │ ├── transformutilities.ts │ ├── utility-list.ts │ └── utilitymanager.ts ├── extension.ts ├── test │ └── test-data.js └── tools │ ├── config.json │ ├── gen-utilities-data.js │ └── gen-utilities-data.ts ├── tsconfig.json └── tslint.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/publishToPhcode.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/.github/workflows/publishToPhcode.yml -------------------------------------------------------------------------------- /.github/workflows/setupRepository.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/.github/workflows/setupRepository.cjs -------------------------------------------------------------------------------- /.github/workflows/setupRepository.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/.github/workflows/setupRepository.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/README.md -------------------------------------------------------------------------------- /atom/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/atom/CHANGELOG.md -------------------------------------------------------------------------------- /atom/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/atom/LICENSE.txt -------------------------------------------------------------------------------- /atom/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/atom/README.md -------------------------------------------------------------------------------- /atom/keymaps/atomtoix.json: -------------------------------------------------------------------------------- 1 | { 2 | "atom-workspace": { 3 | 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /atom/lib/atomtoix-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/atom/lib/atomtoix-view.js -------------------------------------------------------------------------------- /atom/lib/atomtoix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/atom/lib/atomtoix.js -------------------------------------------------------------------------------- /atom/lib/common/expressionprocessor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/atom/lib/common/expressionprocessor.js -------------------------------------------------------------------------------- /atom/lib/common/expressionprocessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/atom/lib/common/expressionprocessor.ts -------------------------------------------------------------------------------- /atom/lib/common/insertutilities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/atom/lib/common/insertutilities.js -------------------------------------------------------------------------------- /atom/lib/common/insertutilities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/atom/lib/common/insertutilities.ts -------------------------------------------------------------------------------- /atom/lib/common/lineutilities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/atom/lib/common/lineutilities.js -------------------------------------------------------------------------------- /atom/lib/common/lineutilities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/atom/lib/common/lineutilities.ts -------------------------------------------------------------------------------- /atom/lib/common/transformutilities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/atom/lib/common/transformutilities.js -------------------------------------------------------------------------------- /atom/lib/common/transformutilities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/atom/lib/common/transformutilities.ts -------------------------------------------------------------------------------- /atom/lib/common/utility-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/atom/lib/common/utility-list.js -------------------------------------------------------------------------------- /atom/lib/common/utility-list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/atom/lib/common/utility-list.ts -------------------------------------------------------------------------------- /atom/lib/common/utility-list_.in.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/atom/lib/common/utility-list_.in.js -------------------------------------------------------------------------------- /atom/lib/common/utility-list_.in.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/atom/lib/common/utility-list_.in.ts -------------------------------------------------------------------------------- /atom/lib/common/utilitymanager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/atom/lib/common/utilitymanager.js -------------------------------------------------------------------------------- /atom/lib/common/utilitymanager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/atom/lib/common/utilitymanager.ts -------------------------------------------------------------------------------- /atom/menus/atomtoix.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/atom/menus/atomtoix.json -------------------------------------------------------------------------------- /atom/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/atom/package.json -------------------------------------------------------------------------------- /atom/spec/atomtoix-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/atom/spec/atomtoix-spec.js -------------------------------------------------------------------------------- /atom/spec/atomtoix-view-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/atom/spec/atomtoix-view-spec.js -------------------------------------------------------------------------------- /atom/styles/atomtoix.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/atom/styles/atomtoix.less -------------------------------------------------------------------------------- /atom/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/atom/tsconfig.json -------------------------------------------------------------------------------- /atom/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/atom/tslint.json -------------------------------------------------------------------------------- /l10n/convert-l10n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/l10n/convert-l10n.py -------------------------------------------------------------------------------- /l10n/convert-l10n.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/l10n/convert-l10n.sh -------------------------------------------------------------------------------- /l10n/l10n.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/l10n/l10n.csv -------------------------------------------------------------------------------- /linux/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/linux/LICENSE -------------------------------------------------------------------------------- /linux/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/linux/debian/changelog -------------------------------------------------------------------------------- /linux/debian/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /linux/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/linux/debian/control -------------------------------------------------------------------------------- /linux/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/linux/debian/copyright -------------------------------------------------------------------------------- /linux/debian/files: -------------------------------------------------------------------------------- 1 | editortoix_4.0.12_source.buildinfo misc optional 2 | -------------------------------------------------------------------------------- /linux/debian/install: -------------------------------------------------------------------------------- 1 | usr 2 | -------------------------------------------------------------------------------- /linux/debian/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/linux/debian/postinst -------------------------------------------------------------------------------- /linux/debian/postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/linux/debian/postrm -------------------------------------------------------------------------------- /linux/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/linux/debian/rules -------------------------------------------------------------------------------- /linux/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /linux/tools/generate-plugin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/linux/tools/generate-plugin.sh -------------------------------------------------------------------------------- /linux/tools/replicate-xed-plugins-to-other-editors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/linux/tools/replicate-xed-plugins-to-other-editors.sh -------------------------------------------------------------------------------- /linux/tools/toix_template/toix_template.plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/linux/tools/toix_template/toix_template.plugin -------------------------------------------------------------------------------- /linux/tools/toix_template/toix_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/linux/tools/toix_template/toix_template.py -------------------------------------------------------------------------------- /linux/tools/update-changelog-timedate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/linux/tools/update-changelog-timedate.py -------------------------------------------------------------------------------- /linux/usr/bin/editortoix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/linux/usr/bin/editortoix -------------------------------------------------------------------------------- /linux/usr/share/editortoix/gedit/plugins/toix_cyclecase/toix_cyclecase.plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/linux/usr/share/editortoix/gedit/plugins/toix_cyclecase/toix_cyclecase.plugin -------------------------------------------------------------------------------- /linux/usr/share/editortoix/gedit/plugins/toix_cyclecase/toix_cyclecase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/linux/usr/share/editortoix/gedit/plugins/toix_cyclecase/toix_cyclecase.py -------------------------------------------------------------------------------- /linux/usr/share/editortoix/gedit/plugins/toix_indentonespace/toix_indentonespace.plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/linux/usr/share/editortoix/gedit/plugins/toix_indentonespace/toix_indentonespace.plugin -------------------------------------------------------------------------------- /linux/usr/share/editortoix/gedit/plugins/toix_indentonespace/toix_indentonespace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/linux/usr/share/editortoix/gedit/plugins/toix_indentonespace/toix_indentonespace.py -------------------------------------------------------------------------------- /linux/usr/share/editortoix/gedit/plugins/toix_outdentonespace/toix_outdentonespace.plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/linux/usr/share/editortoix/gedit/plugins/toix_outdentonespace/toix_outdentonespace.plugin -------------------------------------------------------------------------------- /linux/usr/share/editortoix/gedit/plugins/toix_outdentonespace/toix_outdentonespace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/linux/usr/share/editortoix/gedit/plugins/toix_outdentonespace/toix_outdentonespace.py -------------------------------------------------------------------------------- /linux/usr/share/editortoix/gedit/plugins/toix_proxy/locale/de/LC_MESSAGES/editortoix.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/linux/usr/share/editortoix/gedit/plugins/toix_proxy/locale/de/LC_MESSAGES/editortoix.po -------------------------------------------------------------------------------- /linux/usr/share/editortoix/gedit/plugins/toix_proxy/locale/en/LC_MESSAGES/editortoix.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/linux/usr/share/editortoix/gedit/plugins/toix_proxy/locale/en/LC_MESSAGES/editortoix.po -------------------------------------------------------------------------------- /linux/usr/share/editortoix/gedit/plugins/toix_proxy/locale/pt/LC_MESSAGES/editortoix.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/linux/usr/share/editortoix/gedit/plugins/toix_proxy/locale/pt/LC_MESSAGES/editortoix.po -------------------------------------------------------------------------------- /linux/usr/share/editortoix/gedit/plugins/toix_proxy/toix_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/linux/usr/share/editortoix/gedit/plugins/toix_proxy/toix_proxy.py -------------------------------------------------------------------------------- /linux/usr/share/editortoix/gedit/plugins/toix_proxy/toix_proxy_gedit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/linux/usr/share/editortoix/gedit/plugins/toix_proxy/toix_proxy_gedit.py -------------------------------------------------------------------------------- /linux/usr/share/editortoix/gedit/plugins/toix_removeduplicatedlines/toix_removeduplicatedlines.plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/linux/usr/share/editortoix/gedit/plugins/toix_removeduplicatedlines/toix_removeduplicatedlines.plugin -------------------------------------------------------------------------------- /linux/usr/share/editortoix/gedit/plugins/toix_removeduplicatedlines/toix_removeduplicatedlines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/linux/usr/share/editortoix/gedit/plugins/toix_removeduplicatedlines/toix_removeduplicatedlines.py -------------------------------------------------------------------------------- /linux/usr/share/editortoix/gedit/plugins/toix_removeemptylines/toix_removeemptylines.plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/linux/usr/share/editortoix/gedit/plugins/toix_removeemptylines/toix_removeemptylines.plugin -------------------------------------------------------------------------------- /linux/usr/share/editortoix/gedit/plugins/toix_removeemptylines/toix_removeemptylines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/linux/usr/share/editortoix/gedit/plugins/toix_removeemptylines/toix_removeemptylines.py -------------------------------------------------------------------------------- /linux/usr/share/editortoix/gedit/plugins/toix_reverselines/toix_reverselines.plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/linux/usr/share/editortoix/gedit/plugins/toix_reverselines/toix_reverselines.plugin -------------------------------------------------------------------------------- /linux/usr/share/editortoix/gedit/plugins/toix_reverselines/toix_reverselines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/linux/usr/share/editortoix/gedit/plugins/toix_reverselines/toix_reverselines.py -------------------------------------------------------------------------------- /linux/usr/share/editortoix/gedit/plugins/toix_sortnumericallyascending/toix_sortnumericallyascending.plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/linux/usr/share/editortoix/gedit/plugins/toix_sortnumericallyascending/toix_sortnumericallyascending.plugin -------------------------------------------------------------------------------- /linux/usr/share/editortoix/gedit/plugins/toix_sortnumericallyascending/toix_sortnumericallyascending.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/linux/usr/share/editortoix/gedit/plugins/toix_sortnumericallyascending/toix_sortnumericallyascending.py -------------------------------------------------------------------------------- /linux/usr/share/editortoix/gedit/plugins/toix_sortnumericallydescending/toix_sortnumericallydescending.plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/linux/usr/share/editortoix/gedit/plugins/toix_sortnumericallydescending/toix_sortnumericallydescending.plugin -------------------------------------------------------------------------------- /linux/usr/share/editortoix/gedit/plugins/toix_sortnumericallydescending/toix_sortnumericallydescending.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/linux/usr/share/editortoix/gedit/plugins/toix_sortnumericallydescending/toix_sortnumericallydescending.py -------------------------------------------------------------------------------- /linux/usr/share/editortoix/gedit/plugins/toix_trimtrailing/toix_trimtrailing.plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/linux/usr/share/editortoix/gedit/plugins/toix_trimtrailing/toix_trimtrailing.plugin -------------------------------------------------------------------------------- /linux/usr/share/editortoix/gedit/plugins/toix_trimtrailing/toix_trimtrailing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/linux/usr/share/editortoix/gedit/plugins/toix_trimtrailing/toix_trimtrailing.py -------------------------------------------------------------------------------- /linux/usr/share/editortoix/pluma/plugins/toix_cyclecase/toix_cyclecase.plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/linux/usr/share/editortoix/pluma/plugins/toix_cyclecase/toix_cyclecase.plugin -------------------------------------------------------------------------------- /linux/usr/share/editortoix/pluma/plugins/toix_cyclecase/toix_cyclecase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/linux/usr/share/editortoix/pluma/plugins/toix_cyclecase/toix_cyclecase.py -------------------------------------------------------------------------------- /linux/usr/share/editortoix/pluma/plugins/toix_indentonespace/toix_indentonespace.plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/linux/usr/share/editortoix/pluma/plugins/toix_indentonespace/toix_indentonespace.plugin -------------------------------------------------------------------------------- /linux/usr/share/editortoix/pluma/plugins/toix_indentonespace/toix_indentonespace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/linux/usr/share/editortoix/pluma/plugins/toix_indentonespace/toix_indentonespace.py -------------------------------------------------------------------------------- /linux/usr/share/editortoix/pluma/plugins/toix_outdentonespace/toix_outdentonespace.plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/linux/usr/share/editortoix/pluma/plugins/toix_outdentonespace/toix_outdentonespace.plugin -------------------------------------------------------------------------------- /linux/usr/share/editortoix/pluma/plugins/toix_outdentonespace/toix_outdentonespace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/linux/usr/share/editortoix/pluma/plugins/toix_outdentonespace/toix_outdentonespace.py -------------------------------------------------------------------------------- /linux/usr/share/editortoix/pluma/plugins/toix_proxy/locale/de/LC_MESSAGES/editortoix.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/linux/usr/share/editortoix/pluma/plugins/toix_proxy/locale/de/LC_MESSAGES/editortoix.po -------------------------------------------------------------------------------- /linux/usr/share/editortoix/pluma/plugins/toix_proxy/locale/en/LC_MESSAGES/editortoix.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/linux/usr/share/editortoix/pluma/plugins/toix_proxy/locale/en/LC_MESSAGES/editortoix.po -------------------------------------------------------------------------------- /linux/usr/share/editortoix/pluma/plugins/toix_proxy/locale/pt/LC_MESSAGES/editortoix.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/linux/usr/share/editortoix/pluma/plugins/toix_proxy/locale/pt/LC_MESSAGES/editortoix.po -------------------------------------------------------------------------------- /linux/usr/share/editortoix/pluma/plugins/toix_proxy/toix_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/linux/usr/share/editortoix/pluma/plugins/toix_proxy/toix_proxy.py -------------------------------------------------------------------------------- /linux/usr/share/editortoix/pluma/plugins/toix_proxy/toix_proxy_pluma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/linux/usr/share/editortoix/pluma/plugins/toix_proxy/toix_proxy_pluma.py -------------------------------------------------------------------------------- /linux/usr/share/editortoix/pluma/plugins/toix_removeduplicatedlines/toix_removeduplicatedlines.plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/linux/usr/share/editortoix/pluma/plugins/toix_removeduplicatedlines/toix_removeduplicatedlines.plugin -------------------------------------------------------------------------------- /linux/usr/share/editortoix/pluma/plugins/toix_removeduplicatedlines/toix_removeduplicatedlines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/linux/usr/share/editortoix/pluma/plugins/toix_removeduplicatedlines/toix_removeduplicatedlines.py -------------------------------------------------------------------------------- /linux/usr/share/editortoix/pluma/plugins/toix_removeemptylines/toix_removeemptylines.plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/linux/usr/share/editortoix/pluma/plugins/toix_removeemptylines/toix_removeemptylines.plugin -------------------------------------------------------------------------------- /linux/usr/share/editortoix/pluma/plugins/toix_removeemptylines/toix_removeemptylines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/linux/usr/share/editortoix/pluma/plugins/toix_removeemptylines/toix_removeemptylines.py -------------------------------------------------------------------------------- /linux/usr/share/editortoix/pluma/plugins/toix_reverselines/toix_reverselines.plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/linux/usr/share/editortoix/pluma/plugins/toix_reverselines/toix_reverselines.plugin -------------------------------------------------------------------------------- /linux/usr/share/editortoix/pluma/plugins/toix_reverselines/toix_reverselines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/linux/usr/share/editortoix/pluma/plugins/toix_reverselines/toix_reverselines.py -------------------------------------------------------------------------------- /linux/usr/share/editortoix/pluma/plugins/toix_sortnumericallyascending/toix_sortnumericallyascending.plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/linux/usr/share/editortoix/pluma/plugins/toix_sortnumericallyascending/toix_sortnumericallyascending.plugin -------------------------------------------------------------------------------- /linux/usr/share/editortoix/pluma/plugins/toix_sortnumericallyascending/toix_sortnumericallyascending.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/linux/usr/share/editortoix/pluma/plugins/toix_sortnumericallyascending/toix_sortnumericallyascending.py -------------------------------------------------------------------------------- /linux/usr/share/editortoix/pluma/plugins/toix_sortnumericallydescending/toix_sortnumericallydescending.plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/linux/usr/share/editortoix/pluma/plugins/toix_sortnumericallydescending/toix_sortnumericallydescending.plugin -------------------------------------------------------------------------------- /linux/usr/share/editortoix/pluma/plugins/toix_sortnumericallydescending/toix_sortnumericallydescending.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/linux/usr/share/editortoix/pluma/plugins/toix_sortnumericallydescending/toix_sortnumericallydescending.py -------------------------------------------------------------------------------- /linux/usr/share/editortoix/pluma/plugins/toix_trimtrailing/toix_trimtrailing.plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/linux/usr/share/editortoix/pluma/plugins/toix_trimtrailing/toix_trimtrailing.plugin -------------------------------------------------------------------------------- /linux/usr/share/editortoix/pluma/plugins/toix_trimtrailing/toix_trimtrailing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/linux/usr/share/editortoix/pluma/plugins/toix_trimtrailing/toix_trimtrailing.py -------------------------------------------------------------------------------- /linux/usr/share/editortoix/xed/plugins/toix_cyclecase/toix_cyclecase.plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/linux/usr/share/editortoix/xed/plugins/toix_cyclecase/toix_cyclecase.plugin -------------------------------------------------------------------------------- /linux/usr/share/editortoix/xed/plugins/toix_cyclecase/toix_cyclecase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/linux/usr/share/editortoix/xed/plugins/toix_cyclecase/toix_cyclecase.py -------------------------------------------------------------------------------- /linux/usr/share/editortoix/xed/plugins/toix_indentonespace/toix_indentonespace.plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/linux/usr/share/editortoix/xed/plugins/toix_indentonespace/toix_indentonespace.plugin -------------------------------------------------------------------------------- /linux/usr/share/editortoix/xed/plugins/toix_indentonespace/toix_indentonespace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/linux/usr/share/editortoix/xed/plugins/toix_indentonespace/toix_indentonespace.py -------------------------------------------------------------------------------- /linux/usr/share/editortoix/xed/plugins/toix_outdentonespace/toix_outdentonespace.plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/linux/usr/share/editortoix/xed/plugins/toix_outdentonespace/toix_outdentonespace.plugin -------------------------------------------------------------------------------- /linux/usr/share/editortoix/xed/plugins/toix_outdentonespace/toix_outdentonespace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/linux/usr/share/editortoix/xed/plugins/toix_outdentonespace/toix_outdentonespace.py -------------------------------------------------------------------------------- /linux/usr/share/editortoix/xed/plugins/toix_proxy/locale/de/LC_MESSAGES/editortoix.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/linux/usr/share/editortoix/xed/plugins/toix_proxy/locale/de/LC_MESSAGES/editortoix.po -------------------------------------------------------------------------------- /linux/usr/share/editortoix/xed/plugins/toix_proxy/locale/en/LC_MESSAGES/editortoix.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/linux/usr/share/editortoix/xed/plugins/toix_proxy/locale/en/LC_MESSAGES/editortoix.po -------------------------------------------------------------------------------- /linux/usr/share/editortoix/xed/plugins/toix_proxy/locale/pt/LC_MESSAGES/editortoix.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/linux/usr/share/editortoix/xed/plugins/toix_proxy/locale/pt/LC_MESSAGES/editortoix.po -------------------------------------------------------------------------------- /linux/usr/share/editortoix/xed/plugins/toix_proxy/toix_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/linux/usr/share/editortoix/xed/plugins/toix_proxy/toix_proxy.py -------------------------------------------------------------------------------- /linux/usr/share/editortoix/xed/plugins/toix_proxy/toix_proxy_pluma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/linux/usr/share/editortoix/xed/plugins/toix_proxy/toix_proxy_pluma.py -------------------------------------------------------------------------------- /linux/usr/share/editortoix/xed/plugins/toix_proxy/toix_proxy_xed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/linux/usr/share/editortoix/xed/plugins/toix_proxy/toix_proxy_xed.py -------------------------------------------------------------------------------- /linux/usr/share/editortoix/xed/plugins/toix_removeduplicatedlines/toix_removeduplicatedlines.plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/linux/usr/share/editortoix/xed/plugins/toix_removeduplicatedlines/toix_removeduplicatedlines.plugin -------------------------------------------------------------------------------- /linux/usr/share/editortoix/xed/plugins/toix_removeduplicatedlines/toix_removeduplicatedlines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/linux/usr/share/editortoix/xed/plugins/toix_removeduplicatedlines/toix_removeduplicatedlines.py -------------------------------------------------------------------------------- /linux/usr/share/editortoix/xed/plugins/toix_removeemptylines/toix_removeemptylines.plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/linux/usr/share/editortoix/xed/plugins/toix_removeemptylines/toix_removeemptylines.plugin -------------------------------------------------------------------------------- /linux/usr/share/editortoix/xed/plugins/toix_removeemptylines/toix_removeemptylines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/linux/usr/share/editortoix/xed/plugins/toix_removeemptylines/toix_removeemptylines.py -------------------------------------------------------------------------------- /linux/usr/share/editortoix/xed/plugins/toix_reverselines/toix_reverselines.plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/linux/usr/share/editortoix/xed/plugins/toix_reverselines/toix_reverselines.plugin -------------------------------------------------------------------------------- /linux/usr/share/editortoix/xed/plugins/toix_reverselines/toix_reverselines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/linux/usr/share/editortoix/xed/plugins/toix_reverselines/toix_reverselines.py -------------------------------------------------------------------------------- /linux/usr/share/editortoix/xed/plugins/toix_sortnumericallyascending/toix_sortnumericallyascending.plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/linux/usr/share/editortoix/xed/plugins/toix_sortnumericallyascending/toix_sortnumericallyascending.plugin -------------------------------------------------------------------------------- /linux/usr/share/editortoix/xed/plugins/toix_sortnumericallyascending/toix_sortnumericallyascending.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/linux/usr/share/editortoix/xed/plugins/toix_sortnumericallyascending/toix_sortnumericallyascending.py -------------------------------------------------------------------------------- /linux/usr/share/editortoix/xed/plugins/toix_sortnumericallydescending/toix_sortnumericallydescending.plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/linux/usr/share/editortoix/xed/plugins/toix_sortnumericallydescending/toix_sortnumericallydescending.plugin -------------------------------------------------------------------------------- /linux/usr/share/editortoix/xed/plugins/toix_sortnumericallydescending/toix_sortnumericallydescending.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/linux/usr/share/editortoix/xed/plugins/toix_sortnumericallydescending/toix_sortnumericallydescending.py -------------------------------------------------------------------------------- /linux/usr/share/editortoix/xed/plugins/toix_trimtrailing/toix_trimtrailing.plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/linux/usr/share/editortoix/xed/plugins/toix_trimtrailing/toix_trimtrailing.plugin -------------------------------------------------------------------------------- /linux/usr/share/editortoix/xed/plugins/toix_trimtrailing/toix_trimtrailing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/linux/usr/share/editortoix/xed/plugins/toix_trimtrailing/toix_trimtrailing.py -------------------------------------------------------------------------------- /phoenix/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/phoenix/CHANGELOG.md -------------------------------------------------------------------------------- /phoenix/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/phoenix/LICENSE.txt -------------------------------------------------------------------------------- /phoenix/assets/icomoontoix.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/phoenix/assets/icomoontoix.ttf -------------------------------------------------------------------------------- /phoenix/assets/icon64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/phoenix/assets/icon64.png -------------------------------------------------------------------------------- /phoenix/brackets.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/phoenix/brackets.d.ts -------------------------------------------------------------------------------- /phoenix/common/lineutilities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/phoenix/common/lineutilities.js -------------------------------------------------------------------------------- /phoenix/common/lineutilities.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/phoenix/common/lineutilities.js.map -------------------------------------------------------------------------------- /phoenix/common/lineutilities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/phoenix/common/lineutilities.ts -------------------------------------------------------------------------------- /phoenix/common/transformutilities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/phoenix/common/transformutilities.js -------------------------------------------------------------------------------- /phoenix/common/transformutilities.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/phoenix/common/transformutilities.js.map -------------------------------------------------------------------------------- /phoenix/common/transformutilities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/phoenix/common/transformutilities.ts -------------------------------------------------------------------------------- /phoenix/common/utilitymanager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/phoenix/common/utilitymanager.js -------------------------------------------------------------------------------- /phoenix/common/utilitymanager.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/phoenix/common/utilitymanager.js.map -------------------------------------------------------------------------------- /phoenix/common/utilitymanager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/phoenix/common/utilitymanager.ts -------------------------------------------------------------------------------- /phoenix/compressors/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/phoenix/compressors/README -------------------------------------------------------------------------------- /phoenix/compressors/compiler.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/phoenix/compressors/compiler.jar -------------------------------------------------------------------------------- /phoenix/dom.generated.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/phoenix/dom.generated.d.ts -------------------------------------------------------------------------------- /phoenix/html/htmltemplatestoix.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/phoenix/html/htmltemplatestoix.json -------------------------------------------------------------------------------- /phoenix/html/optionstoix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/phoenix/html/optionstoix.html -------------------------------------------------------------------------------- /phoenix/icomoon/Read Me.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/phoenix/icomoon/Read Me.txt -------------------------------------------------------------------------------- /phoenix/icomoon/demo-files/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/phoenix/icomoon/demo-files/demo.css -------------------------------------------------------------------------------- /phoenix/icomoon/demo-files/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/phoenix/icomoon/demo-files/demo.js -------------------------------------------------------------------------------- /phoenix/icomoon/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/phoenix/icomoon/demo.html -------------------------------------------------------------------------------- /phoenix/icomoon/fonts/icomoon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/phoenix/icomoon/fonts/icomoon.eot -------------------------------------------------------------------------------- /phoenix/icomoon/fonts/icomoon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/phoenix/icomoon/fonts/icomoon.svg -------------------------------------------------------------------------------- /phoenix/icomoon/fonts/icomoon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/phoenix/icomoon/fonts/icomoon.woff -------------------------------------------------------------------------------- /phoenix/icomoon/selection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/phoenix/icomoon/selection.json -------------------------------------------------------------------------------- /phoenix/icomoon/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/phoenix/icomoon/style.css -------------------------------------------------------------------------------- /phoenix/lorem.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/phoenix/lorem.txt -------------------------------------------------------------------------------- /phoenix/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/phoenix/main.js -------------------------------------------------------------------------------- /phoenix/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/phoenix/main.ts -------------------------------------------------------------------------------- /phoenix/nls/de/strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/phoenix/nls/de/strings.js -------------------------------------------------------------------------------- /phoenix/nls/pt/strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/phoenix/nls/pt/strings.js -------------------------------------------------------------------------------- /phoenix/nls/root/strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/phoenix/nls/root/strings.js -------------------------------------------------------------------------------- /phoenix/nls/strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/phoenix/nls/strings.js -------------------------------------------------------------------------------- /phoenix/nls/zh-tw/strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/phoenix/nls/zh-tw/strings.js -------------------------------------------------------------------------------- /phoenix/nls/zh/strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/phoenix/nls/zh/strings.js -------------------------------------------------------------------------------- /phoenix/node/IXDomains.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/phoenix/node/IXDomains.js -------------------------------------------------------------------------------- /phoenix/node/IXDomains.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/phoenix/node/IXDomains.js.map -------------------------------------------------------------------------------- /phoenix/node/IXDomains.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/phoenix/node/IXDomains.ts -------------------------------------------------------------------------------- /phoenix/optionstoix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/phoenix/optionstoix.js -------------------------------------------------------------------------------- /phoenix/optionstoix.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/phoenix/optionstoix.ts -------------------------------------------------------------------------------- /phoenix/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/phoenix/package-lock.json -------------------------------------------------------------------------------- /phoenix/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/phoenix/package.json -------------------------------------------------------------------------------- /phoenix/pdtoolstoix.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/phoenix/pdtoolstoix.json -------------------------------------------------------------------------------- /phoenix/prefstoix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/phoenix/prefstoix.js -------------------------------------------------------------------------------- /phoenix/prefstoix.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/phoenix/prefstoix.ts -------------------------------------------------------------------------------- /phoenix/snippets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/phoenix/snippets.json -------------------------------------------------------------------------------- /phoenix/styles/editortoix.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/phoenix/styles/editortoix.css -------------------------------------------------------------------------------- /phoenix/tools/build-dist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/phoenix/tools/build-dist.sh -------------------------------------------------------------------------------- /phoenix/tools/nls2txt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/phoenix/tools/nls2txt.js -------------------------------------------------------------------------------- /phoenix/tools/txt2nls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/phoenix/tools/txt2nls.js -------------------------------------------------------------------------------- /phoenix/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/phoenix/tsconfig.json -------------------------------------------------------------------------------- /phoenix/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/phoenix/tslint.json -------------------------------------------------------------------------------- /phoenix/uitoix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/phoenix/uitoix.js -------------------------------------------------------------------------------- /phoenix/uitoix.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/phoenix/uitoix.ts -------------------------------------------------------------------------------- /vsx/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/vsx/.eslintrc.js -------------------------------------------------------------------------------- /vsx/.markdownlint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/vsx/.markdownlint.json -------------------------------------------------------------------------------- /vsx/.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/vsx/.vscodeignore -------------------------------------------------------------------------------- /vsx/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/vsx/CHANGELOG.md -------------------------------------------------------------------------------- /vsx/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/vsx/LICENSE.txt -------------------------------------------------------------------------------- /vsx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/vsx/README.md -------------------------------------------------------------------------------- /vsx/assets/demo/break-line-at.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/vsx/assets/demo/break-line-at.gif -------------------------------------------------------------------------------- /vsx/assets/demo/change-case.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/vsx/assets/demo/change-case.gif -------------------------------------------------------------------------------- /vsx/assets/demo/cycle-case.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/vsx/assets/demo/cycle-case.gif -------------------------------------------------------------------------------- /vsx/assets/demo/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/vsx/assets/demo/demo.gif -------------------------------------------------------------------------------- /vsx/assets/demo/demo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/vsx/assets/demo/demo.mp4 -------------------------------------------------------------------------------- /vsx/assets/demo/extract-text.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/vsx/assets/demo/extract-text.gif -------------------------------------------------------------------------------- /vsx/assets/demo/indent-outdent-lines.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/vsx/assets/demo/indent-outdent-lines.gif -------------------------------------------------------------------------------- /vsx/assets/demo/insert-text-at-end.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/vsx/assets/demo/insert-text-at-end.gif -------------------------------------------------------------------------------- /vsx/assets/demo/insert-text-at-start.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/vsx/assets/demo/insert-text-at-start.gif -------------------------------------------------------------------------------- /vsx/assets/demo/join-lines.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/vsx/assets/demo/join-lines.gif -------------------------------------------------------------------------------- /vsx/assets/demo/mixer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/vsx/assets/demo/mixer.gif -------------------------------------------------------------------------------- /vsx/assets/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/vsx/assets/icon.svg -------------------------------------------------------------------------------- /vsx/assets/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/vsx/assets/icon128.png -------------------------------------------------------------------------------- /vsx/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/vsx/bundle.js -------------------------------------------------------------------------------- /vsx/esbuild.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/vsx/esbuild.js -------------------------------------------------------------------------------- /vsx/l10n/bundle.l10n.de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/vsx/l10n/bundle.l10n.de.json -------------------------------------------------------------------------------- /vsx/l10n/bundle.l10n.pt-br.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/vsx/l10n/bundle.l10n.pt-br.json -------------------------------------------------------------------------------- /vsx/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/vsx/package-lock.json -------------------------------------------------------------------------------- /vsx/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/vsx/package.json -------------------------------------------------------------------------------- /vsx/package.nls.de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/vsx/package.nls.de.json -------------------------------------------------------------------------------- /vsx/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/vsx/package.nls.json -------------------------------------------------------------------------------- /vsx/package.nls.pt-br.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/vsx/package.nls.pt-br.json -------------------------------------------------------------------------------- /vsx/src/common/clipboardutilities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/vsx/src/common/clipboardutilities.ts -------------------------------------------------------------------------------- /vsx/src/common/expressionprocessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/vsx/src/common/expressionprocessor.ts -------------------------------------------------------------------------------- /vsx/src/common/insertutilities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/vsx/src/common/insertutilities.ts -------------------------------------------------------------------------------- /vsx/src/common/lineutilities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/vsx/src/common/lineutilities.ts -------------------------------------------------------------------------------- /vsx/src/common/transformutilities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/vsx/src/common/transformutilities.ts -------------------------------------------------------------------------------- /vsx/src/common/utility-list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/vsx/src/common/utility-list.ts -------------------------------------------------------------------------------- /vsx/src/common/utilitymanager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/vsx/src/common/utilitymanager.ts -------------------------------------------------------------------------------- /vsx/src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/vsx/src/extension.ts -------------------------------------------------------------------------------- /vsx/src/test/test-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/vsx/src/test/test-data.js -------------------------------------------------------------------------------- /vsx/src/tools/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/vsx/src/tools/config.json -------------------------------------------------------------------------------- /vsx/src/tools/gen-utilities-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/vsx/src/tools/gen-utilities-data.js -------------------------------------------------------------------------------- /vsx/src/tools/gen-utilities-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/vsx/src/tools/gen-utilities-data.ts -------------------------------------------------------------------------------- /vsx/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/vsx/tsconfig.json -------------------------------------------------------------------------------- /vsx/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/editortoix/HEAD/vsx/tslint.json --------------------------------------------------------------------------------