├── .editorconfig ├── .github ├── FUNDING.yml └── workflows │ └── ci.yml ├── .gitignore ├── .travis.yml ├── AUTHORS ├── LICENSE ├── README.md ├── app ├── com.github.phase1geo.textshine.yml ├── data ├── com.github.phase1geo.textshine.appdata.xml ├── com.github.phase1geo.textshine.appdata.xml.in ├── com.github.phase1geo.textshine.desktop ├── com.github.phase1geo.textshine.desktop.in ├── com.github.phase1geo.textshine.gresource.xml ├── com.github.phase1geo.textshine.gschema.xml ├── com.github.phase1geo.textshine.shortcuts.ui ├── css │ └── style.css ├── images │ ├── com.github.phase1geo.textshine.png │ └── icons │ │ └── scalable │ │ └── com.github.phase1geo.textshine.svg ├── meson.build └── screenshots │ ├── screenshot-actions.png │ └── screenshot-custom.png ├── debian ├── changelog ├── compat ├── control ├── copyright ├── rules └── source │ └── format ├── meson.build ├── meson └── post_install.py ├── meson_options.txt ├── po ├── LINGUAS ├── POTFILES ├── com.github.phase1geo.textshine.pot ├── de.po ├── extra │ ├── LINGUAS │ ├── POTFILES │ ├── de.po │ ├── extra.pot │ ├── it.po │ ├── meson.build │ └── nl.po ├── it.po ├── meson.build └── nl.po ├── src ├── Application.vala ├── Config.vala.in ├── CustomFunction.vala ├── Editor.vala ├── MainWindow.vala ├── Preferences.vala ├── Sidebar.vala ├── SidebarBox.vala ├── SidebarCustom.vala ├── SidebarFunctions.vala ├── SpellChecker.vala ├── TextFunction.vala ├── TextFunctions.vala ├── UndoBuffer.vala ├── UndoCustomBuffer.vala ├── UndoCustomItem.vala ├── UndoItem.vala ├── Utils.vala ├── functions │ ├── case │ │ ├── CaseCamel.vala │ │ ├── CaseLower.vala │ │ ├── CaseRandom.vala │ │ ├── CaseSentence.vala │ │ ├── CaseSnake.vala │ │ ├── CaseTitle.vala │ │ ├── CaseUpper.vala │ │ └── meson.build │ ├── convert │ │ ├── ConvertBase64.vala │ │ ├── ConvertChecksum.vala │ │ ├── ConvertHardWrap.vala │ │ ├── ConvertMarkdownTable.vala │ │ ├── ConvertROT13.vala │ │ ├── ConvertURL.vala │ │ └── meson.build │ ├── indent │ │ ├── Indent.vala │ │ ├── IndentXML.vala │ │ ├── Unindent.vala │ │ └── meson.build │ ├── insert │ │ ├── InsertFile.vala │ │ ├── InsertLineNumbers.vala │ │ ├── InsertLoremIpsum.vala │ │ ├── InsertText.vala │ │ ├── InsertURL.vala │ │ └── meson.build │ ├── markdown │ │ ├── ConvertMarkdownHTML.vala │ │ ├── MarkdownReferences.vala │ │ ├── MarkdownTableBeauty.vala │ │ ├── MarkdownTaskAdd.vala │ │ ├── MarkdownTaskComplete.vala │ │ ├── MarkdownTaskDelete.vala │ │ ├── MarkdownTaskIncomplete.vala │ │ ├── MarkdownTaskRemoveCompleted.vala │ │ └── meson.build │ ├── match │ │ ├── ClearSelected.vala │ │ ├── Find.vala │ │ ├── InvertSelected.vala │ │ ├── RegExpr.vala │ │ ├── ReplaceSelected.vala │ │ └── meson.build │ ├── meson.build │ ├── quotes │ │ ├── QuotesAngled.vala │ │ ├── QuotesCJK.vala │ │ ├── QuotesCurved.vala │ │ ├── QuotesDoubleSingle.vala │ │ ├── QuotesGerman.vala │ │ ├── QuotesStraight.vala │ │ └── meson.build │ ├── remove │ │ ├── RemoveBlankLines.vala │ │ ├── RemoveDuplicateLines.vala │ │ ├── RemoveLeadingWhitespace.vala │ │ ├── RemoveLineBreaks.vala │ │ ├── RemoveLineNumbers.vala │ │ ├── RemoveSelected.vala │ │ ├── RemoveTrailingWhitespace.vala │ │ └── meson.build │ ├── repair │ │ ├── FixSpaces.vala │ │ └── meson.build │ ├── replace │ │ ├── ReplacePeriodsEllipsis.vala │ │ ├── ReplaceReturnSpace.vala │ │ ├── ReplaceReturns.vala │ │ ├── ReplaceTabsSpaces.vala │ │ └── meson.build │ └── sort │ │ ├── Randomize.vala │ │ ├── SortLines.vala │ │ ├── SortMoveLines.vala │ │ ├── SortReverseChars.vala │ │ └── meson.build └── meson.build └── vapi ├── libmarkdown.vapi └── mkdio.h /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: phase1geo -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- 1 | Trevor Williams 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/README.md -------------------------------------------------------------------------------- /app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/app -------------------------------------------------------------------------------- /com.github.phase1geo.textshine.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/com.github.phase1geo.textshine.yml -------------------------------------------------------------------------------- /data/com.github.phase1geo.textshine.appdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/data/com.github.phase1geo.textshine.appdata.xml -------------------------------------------------------------------------------- /data/com.github.phase1geo.textshine.appdata.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/data/com.github.phase1geo.textshine.appdata.xml.in -------------------------------------------------------------------------------- /data/com.github.phase1geo.textshine.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/data/com.github.phase1geo.textshine.desktop -------------------------------------------------------------------------------- /data/com.github.phase1geo.textshine.desktop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/data/com.github.phase1geo.textshine.desktop.in -------------------------------------------------------------------------------- /data/com.github.phase1geo.textshine.gresource.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/data/com.github.phase1geo.textshine.gresource.xml -------------------------------------------------------------------------------- /data/com.github.phase1geo.textshine.gschema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/data/com.github.phase1geo.textshine.gschema.xml -------------------------------------------------------------------------------- /data/com.github.phase1geo.textshine.shortcuts.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/data/com.github.phase1geo.textshine.shortcuts.ui -------------------------------------------------------------------------------- /data/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/data/css/style.css -------------------------------------------------------------------------------- /data/images/com.github.phase1geo.textshine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/data/images/com.github.phase1geo.textshine.png -------------------------------------------------------------------------------- /data/images/icons/scalable/com.github.phase1geo.textshine.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/data/images/icons/scalable/com.github.phase1geo.textshine.svg -------------------------------------------------------------------------------- /data/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/data/meson.build -------------------------------------------------------------------------------- /data/screenshots/screenshot-actions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/data/screenshots/screenshot-actions.png -------------------------------------------------------------------------------- /data/screenshots/screenshot-custom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/data/screenshots/screenshot-custom.png -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/meson.build -------------------------------------------------------------------------------- /meson/post_install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/meson/post_install.py -------------------------------------------------------------------------------- /meson_options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/meson_options.txt -------------------------------------------------------------------------------- /po/LINGUAS: -------------------------------------------------------------------------------- 1 | de 2 | it 3 | nl 4 | -------------------------------------------------------------------------------- /po/POTFILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/po/POTFILES -------------------------------------------------------------------------------- /po/com.github.phase1geo.textshine.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/po/com.github.phase1geo.textshine.pot -------------------------------------------------------------------------------- /po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/po/de.po -------------------------------------------------------------------------------- /po/extra/LINGUAS: -------------------------------------------------------------------------------- 1 | de 2 | it 3 | nl 4 | -------------------------------------------------------------------------------- /po/extra/POTFILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/po/extra/POTFILES -------------------------------------------------------------------------------- /po/extra/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/po/extra/de.po -------------------------------------------------------------------------------- /po/extra/extra.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/po/extra/extra.pot -------------------------------------------------------------------------------- /po/extra/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/po/extra/it.po -------------------------------------------------------------------------------- /po/extra/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/po/extra/meson.build -------------------------------------------------------------------------------- /po/extra/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/po/extra/nl.po -------------------------------------------------------------------------------- /po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/po/it.po -------------------------------------------------------------------------------- /po/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/po/meson.build -------------------------------------------------------------------------------- /po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/po/nl.po -------------------------------------------------------------------------------- /src/Application.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/src/Application.vala -------------------------------------------------------------------------------- /src/Config.vala.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/src/Config.vala.in -------------------------------------------------------------------------------- /src/CustomFunction.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/src/CustomFunction.vala -------------------------------------------------------------------------------- /src/Editor.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/src/Editor.vala -------------------------------------------------------------------------------- /src/MainWindow.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/src/MainWindow.vala -------------------------------------------------------------------------------- /src/Preferences.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/src/Preferences.vala -------------------------------------------------------------------------------- /src/Sidebar.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/src/Sidebar.vala -------------------------------------------------------------------------------- /src/SidebarBox.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/src/SidebarBox.vala -------------------------------------------------------------------------------- /src/SidebarCustom.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/src/SidebarCustom.vala -------------------------------------------------------------------------------- /src/SidebarFunctions.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/src/SidebarFunctions.vala -------------------------------------------------------------------------------- /src/SpellChecker.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/src/SpellChecker.vala -------------------------------------------------------------------------------- /src/TextFunction.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/src/TextFunction.vala -------------------------------------------------------------------------------- /src/TextFunctions.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/src/TextFunctions.vala -------------------------------------------------------------------------------- /src/UndoBuffer.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/src/UndoBuffer.vala -------------------------------------------------------------------------------- /src/UndoCustomBuffer.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/src/UndoCustomBuffer.vala -------------------------------------------------------------------------------- /src/UndoCustomItem.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/src/UndoCustomItem.vala -------------------------------------------------------------------------------- /src/UndoItem.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/src/UndoItem.vala -------------------------------------------------------------------------------- /src/Utils.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/src/Utils.vala -------------------------------------------------------------------------------- /src/functions/case/CaseCamel.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/src/functions/case/CaseCamel.vala -------------------------------------------------------------------------------- /src/functions/case/CaseLower.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/src/functions/case/CaseLower.vala -------------------------------------------------------------------------------- /src/functions/case/CaseRandom.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/src/functions/case/CaseRandom.vala -------------------------------------------------------------------------------- /src/functions/case/CaseSentence.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/src/functions/case/CaseSentence.vala -------------------------------------------------------------------------------- /src/functions/case/CaseSnake.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/src/functions/case/CaseSnake.vala -------------------------------------------------------------------------------- /src/functions/case/CaseTitle.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/src/functions/case/CaseTitle.vala -------------------------------------------------------------------------------- /src/functions/case/CaseUpper.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/src/functions/case/CaseUpper.vala -------------------------------------------------------------------------------- /src/functions/case/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/src/functions/case/meson.build -------------------------------------------------------------------------------- /src/functions/convert/ConvertBase64.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/src/functions/convert/ConvertBase64.vala -------------------------------------------------------------------------------- /src/functions/convert/ConvertChecksum.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/src/functions/convert/ConvertChecksum.vala -------------------------------------------------------------------------------- /src/functions/convert/ConvertHardWrap.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/src/functions/convert/ConvertHardWrap.vala -------------------------------------------------------------------------------- /src/functions/convert/ConvertMarkdownTable.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/src/functions/convert/ConvertMarkdownTable.vala -------------------------------------------------------------------------------- /src/functions/convert/ConvertROT13.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/src/functions/convert/ConvertROT13.vala -------------------------------------------------------------------------------- /src/functions/convert/ConvertURL.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/src/functions/convert/ConvertURL.vala -------------------------------------------------------------------------------- /src/functions/convert/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/src/functions/convert/meson.build -------------------------------------------------------------------------------- /src/functions/indent/Indent.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/src/functions/indent/Indent.vala -------------------------------------------------------------------------------- /src/functions/indent/IndentXML.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/src/functions/indent/IndentXML.vala -------------------------------------------------------------------------------- /src/functions/indent/Unindent.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/src/functions/indent/Unindent.vala -------------------------------------------------------------------------------- /src/functions/indent/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/src/functions/indent/meson.build -------------------------------------------------------------------------------- /src/functions/insert/InsertFile.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/src/functions/insert/InsertFile.vala -------------------------------------------------------------------------------- /src/functions/insert/InsertLineNumbers.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/src/functions/insert/InsertLineNumbers.vala -------------------------------------------------------------------------------- /src/functions/insert/InsertLoremIpsum.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/src/functions/insert/InsertLoremIpsum.vala -------------------------------------------------------------------------------- /src/functions/insert/InsertText.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/src/functions/insert/InsertText.vala -------------------------------------------------------------------------------- /src/functions/insert/InsertURL.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/src/functions/insert/InsertURL.vala -------------------------------------------------------------------------------- /src/functions/insert/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/src/functions/insert/meson.build -------------------------------------------------------------------------------- /src/functions/markdown/ConvertMarkdownHTML.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/src/functions/markdown/ConvertMarkdownHTML.vala -------------------------------------------------------------------------------- /src/functions/markdown/MarkdownReferences.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/src/functions/markdown/MarkdownReferences.vala -------------------------------------------------------------------------------- /src/functions/markdown/MarkdownTableBeauty.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/src/functions/markdown/MarkdownTableBeauty.vala -------------------------------------------------------------------------------- /src/functions/markdown/MarkdownTaskAdd.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/src/functions/markdown/MarkdownTaskAdd.vala -------------------------------------------------------------------------------- /src/functions/markdown/MarkdownTaskComplete.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/src/functions/markdown/MarkdownTaskComplete.vala -------------------------------------------------------------------------------- /src/functions/markdown/MarkdownTaskDelete.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/src/functions/markdown/MarkdownTaskDelete.vala -------------------------------------------------------------------------------- /src/functions/markdown/MarkdownTaskIncomplete.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/src/functions/markdown/MarkdownTaskIncomplete.vala -------------------------------------------------------------------------------- /src/functions/markdown/MarkdownTaskRemoveCompleted.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/src/functions/markdown/MarkdownTaskRemoveCompleted.vala -------------------------------------------------------------------------------- /src/functions/markdown/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/src/functions/markdown/meson.build -------------------------------------------------------------------------------- /src/functions/match/ClearSelected.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/src/functions/match/ClearSelected.vala -------------------------------------------------------------------------------- /src/functions/match/Find.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/src/functions/match/Find.vala -------------------------------------------------------------------------------- /src/functions/match/InvertSelected.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/src/functions/match/InvertSelected.vala -------------------------------------------------------------------------------- /src/functions/match/RegExpr.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/src/functions/match/RegExpr.vala -------------------------------------------------------------------------------- /src/functions/match/ReplaceSelected.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/src/functions/match/ReplaceSelected.vala -------------------------------------------------------------------------------- /src/functions/match/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/src/functions/match/meson.build -------------------------------------------------------------------------------- /src/functions/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/src/functions/meson.build -------------------------------------------------------------------------------- /src/functions/quotes/QuotesAngled.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/src/functions/quotes/QuotesAngled.vala -------------------------------------------------------------------------------- /src/functions/quotes/QuotesCJK.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/src/functions/quotes/QuotesCJK.vala -------------------------------------------------------------------------------- /src/functions/quotes/QuotesCurved.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/src/functions/quotes/QuotesCurved.vala -------------------------------------------------------------------------------- /src/functions/quotes/QuotesDoubleSingle.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/src/functions/quotes/QuotesDoubleSingle.vala -------------------------------------------------------------------------------- /src/functions/quotes/QuotesGerman.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/src/functions/quotes/QuotesGerman.vala -------------------------------------------------------------------------------- /src/functions/quotes/QuotesStraight.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/src/functions/quotes/QuotesStraight.vala -------------------------------------------------------------------------------- /src/functions/quotes/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/src/functions/quotes/meson.build -------------------------------------------------------------------------------- /src/functions/remove/RemoveBlankLines.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/src/functions/remove/RemoveBlankLines.vala -------------------------------------------------------------------------------- /src/functions/remove/RemoveDuplicateLines.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/src/functions/remove/RemoveDuplicateLines.vala -------------------------------------------------------------------------------- /src/functions/remove/RemoveLeadingWhitespace.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/src/functions/remove/RemoveLeadingWhitespace.vala -------------------------------------------------------------------------------- /src/functions/remove/RemoveLineBreaks.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/src/functions/remove/RemoveLineBreaks.vala -------------------------------------------------------------------------------- /src/functions/remove/RemoveLineNumbers.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/src/functions/remove/RemoveLineNumbers.vala -------------------------------------------------------------------------------- /src/functions/remove/RemoveSelected.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/src/functions/remove/RemoveSelected.vala -------------------------------------------------------------------------------- /src/functions/remove/RemoveTrailingWhitespace.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/src/functions/remove/RemoveTrailingWhitespace.vala -------------------------------------------------------------------------------- /src/functions/remove/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/src/functions/remove/meson.build -------------------------------------------------------------------------------- /src/functions/repair/FixSpaces.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/src/functions/repair/FixSpaces.vala -------------------------------------------------------------------------------- /src/functions/repair/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/src/functions/repair/meson.build -------------------------------------------------------------------------------- /src/functions/replace/ReplacePeriodsEllipsis.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/src/functions/replace/ReplacePeriodsEllipsis.vala -------------------------------------------------------------------------------- /src/functions/replace/ReplaceReturnSpace.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/src/functions/replace/ReplaceReturnSpace.vala -------------------------------------------------------------------------------- /src/functions/replace/ReplaceReturns.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/src/functions/replace/ReplaceReturns.vala -------------------------------------------------------------------------------- /src/functions/replace/ReplaceTabsSpaces.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/src/functions/replace/ReplaceTabsSpaces.vala -------------------------------------------------------------------------------- /src/functions/replace/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/src/functions/replace/meson.build -------------------------------------------------------------------------------- /src/functions/sort/Randomize.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/src/functions/sort/Randomize.vala -------------------------------------------------------------------------------- /src/functions/sort/SortLines.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/src/functions/sort/SortLines.vala -------------------------------------------------------------------------------- /src/functions/sort/SortMoveLines.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/src/functions/sort/SortMoveLines.vala -------------------------------------------------------------------------------- /src/functions/sort/SortReverseChars.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/src/functions/sort/SortReverseChars.vala -------------------------------------------------------------------------------- /src/functions/sort/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/src/functions/sort/meson.build -------------------------------------------------------------------------------- /src/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/src/meson.build -------------------------------------------------------------------------------- /vapi/libmarkdown.vapi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/vapi/libmarkdown.vapi -------------------------------------------------------------------------------- /vapi/mkdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phase1geo/TextShine/HEAD/vapi/mkdio.h --------------------------------------------------------------------------------