├── .git-blame-ignore-revs ├── .gitignore ├── .gitlab-ci.yml ├── .kateconfig ├── .kateproject ├── .kde-ci.yml ├── CMakeLists.txt ├── ExtraDesktop.sh ├── KF6TextEditorConfig.cmake.in ├── LICENSES ├── BSD-2-Clause.txt ├── CC0-1.0.txt ├── LGPL-2.0-only.txt ├── LGPL-2.0-or-later.txt └── MIT.txt ├── README.md ├── autotests ├── CMakeLists.txt ├── input │ ├── .clang-format │ ├── .gitignore │ ├── bug205447.txt │ ├── bug311866.cpp │ ├── bug313759.js │ ├── bug313759.txt │ ├── bug313769.cpp │ ├── bug404713_line_height_issue.xml │ ├── commands │ │ └── utils.js │ ├── encoding │ │ ├── cp1251.txt │ │ ├── cyrillic_utf8.txt │ │ ├── koi8-r.txt │ │ ├── latin15-with-utf8-bom.txt │ │ ├── latin15.txt │ │ ├── one-char-latin-15.txt │ │ ├── utf16.txt │ │ ├── utf16be.txt │ │ ├── utf32.txt │ │ ├── utf32be.txt │ │ ├── utf8-bom-only.txt │ │ └── utf8.txt │ ├── indent │ │ ├── R │ │ │ ├── .kateconfig │ │ │ ├── bracketsBreak │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── closeBracket │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── indentAssign │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── indentBracket │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── indentFormula │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── indentOperator │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── indentpaste1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── indentpaste2 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ └── skipComment │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ ├── ada │ │ │ ├── .kateconfig │ │ │ ├── closepar2 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── longtest │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── newline │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── openpar2 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── prep1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ └── trig1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ ├── cmake │ │ │ ├── .kateconfig │ │ │ ├── enter1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── enter2 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── enter3 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── paren1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── quot1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ └── var1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ ├── cppstyle │ │ │ ├── .kateconfig │ │ │ ├── autobrackets1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── autobrackets2 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── autobrackets3 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── colon1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── colon10 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── colon2 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── colon3 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── colon4 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── colon5 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── colon6 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── colon7 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── colon8 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── colon9 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── comma1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── comma2 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── comma3 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── comma4 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── comma5 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── comment1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── comment10 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── comment11 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── comment12 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── comment13 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── comment14 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── comment15 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── comment16 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── comment17 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── comment18 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── comment19 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── comment2 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── comment20 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── comment3 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── comment4 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── comment5 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── comment6 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── comment7 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── comment8 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── comment9 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── do1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── dot1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── dot2 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── dot3 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── doxygen1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── doxygen2 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── doxygen3 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── doxygen4 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── doxygen5 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── doxygen6 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── doxygen7 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── doxygen8 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── doxygen9 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── equal1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── equal2 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── equal3 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── equal4 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── equal5 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── equal6 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── exclamation1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── exclamation2 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── exclamation3 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── exclamation4 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── exclamation5 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── for1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── for2 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── lab1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── lab10 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── lab2 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── lab3 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── lab4 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── lab5 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── lab6 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── lab7 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── lab8 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── lab9 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── normal1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── normal10 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── normal11 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── normal12 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── normal13 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── normal14 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── normal15 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── normal16 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── normal17 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── normal18 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── normal19 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── normal2 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── normal20 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── normal21 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── normal22 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── normal23 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── normal24 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── normal25 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── normal3 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── normal4 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── normal5 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── normal6 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── normal7 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── normal8 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── normal9 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── parens1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── pipe1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── plist1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── plist2 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── plist3 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── preprocessor1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── preprocessor2 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── preprocessor3 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── preprocessor4 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── preprocessor5 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── preprocessor6 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── quote1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── quote2 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── quote3 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── quote4 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── semicolon1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── semicolon2 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── semicolon3 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── semicolon4 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── semicolon5 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── semicolon6 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── semicolon7 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── semicolon8 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── shortcut1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── shortcut10 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── shortcut11 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── shortcut12 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── shortcut2 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── shortcut3 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── shortcut4 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── shortcut6 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── shortcut7 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── shortcut8 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── shortcut9 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── space1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── space2 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── string1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── string2 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── string3 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── string4 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── string5 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── string6 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── ternary_op1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── ternary_op2 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ └── ternary_op3 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ ├── cstyle │ │ │ ├── 137157 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── 360456 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── 385472 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── .kateconfig │ │ │ ├── alignbrace │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── aplist1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── aplist10 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── aplist11 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── aplist12 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── aplist13 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── aplist14 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── aplist15 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── aplist16 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── aplist17 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── aplist18 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── aplist19 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── aplist2 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── aplist20 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── aplist3 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── aplist4 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── aplist5 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── aplist6 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── aplist8 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── aplist9 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── brace1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── brace2 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── clospar1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── clospar2 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── clospar3 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── clospar4 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── clospar5 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── comma1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── comma2 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── comma3 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── comma4 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── comma5 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── comma6 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── comment1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── comment2 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── dart1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── do1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── do2 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── do3 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── doxygen1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── doxygen10 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── doxygen11 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── doxygen2 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── doxygen3 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── doxygen4 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── doxygen5 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── doxygen6 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── doxygen7 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── doxygen8 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── doxygen9 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── elsething │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── for1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── for2 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── for3 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── for4 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── for5 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── foreign1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── foreign2 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── foreign3 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── fork │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── func_in_param │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── if1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── if10 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── if11 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── if2 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── if3 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── if4 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── if5 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── if6 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── if7 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── if8 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── if9 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── indentpaste1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── indentpaste2 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── indentpaste3 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── indentpaste4 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── indentpaste5 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── indentpaste6 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── jsarray │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── normal1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── normal2 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── normal3 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── openpar1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── openpar10 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── openpar11 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── openpar12 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── openpar13 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── openpar2 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── openpar3 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── openpar4 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── openpar5 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── openpar6 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── openpar7 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── openpar8 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── openpar9 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── plist1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── plist10 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── plist11 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── plist12 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── plist13 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── plist14 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── plist15 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── plist16 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── plist17 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── plist18 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── plist19 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── plist2 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── plist20 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── plist21 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── plist22 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── plist24 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── plist25 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── plist26 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── plist3 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── plist4 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── plist5 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── plist6 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── plist7 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── plist8 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── plist9 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── prep1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── prep2 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── prep3 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── prep4 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── prep5 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── prep6 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── string1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── string2 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── string3 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── string4 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── switch1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── switch10 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── switch11 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── switch12 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── switch13 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── switch14 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── switch2 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── switch3 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── switch4 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── switch5 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── switch6 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── switch7 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── switch8 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── switch9 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── tabindent │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── top1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── top10 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── top11 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── top12 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── top13 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── top14 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── top15 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── top16 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── top17 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── top18 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── top19 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── top2 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── top3 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── top4 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── top5 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── top6 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── top7 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── top8 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── top9 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── triggerchars │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── usestrict │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── using1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── using2 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── using3 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── visib1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── visib2 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── visib3 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── visib4 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── visib5 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── visib6 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── visib7 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── visib8 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── while1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── while2 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ └── while3 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ ├── haskell │ │ │ ├── .kateconfig │ │ │ ├── afterComma1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── dontIndent1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── if1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── if2 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ └── parsec1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ ├── julia │ │ │ ├── .kateconfig │ │ │ ├── beginblock1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── beginblock2 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── doblock │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── else1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── else2 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── elseif1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── elseif2 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── function_args │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── if1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── if2 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── indentComment │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── indentpaste1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── indentpaste2 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── keepIndent1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── keepIndent2 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── keepIndent3 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── keepIndent4 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── keepIndent5_argparse │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── list1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── list2 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── nested1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── nested2 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── parametrics │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── subsetting │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── triggerchars │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── tuple1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── tuple2 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── using1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── using2 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── using3 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── using4 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── using5 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ └── wrapped_line │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ ├── latex │ │ │ ├── .kateconfig │ │ │ ├── env1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── env2 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ └── env3 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ ├── normal │ │ │ ├── .kateconfig │ │ │ ├── cascade1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── emptyline1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── emptyline2 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── emptyline3 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── midbreak1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── midbreak2 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── normal1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── normal2 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ └── normal3 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ ├── pascal │ │ │ ├── .kateconfig │ │ │ ├── case1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── case2 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── case3 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── case4 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── case5 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── case6 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── closepar1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── closepar2 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── comment1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── comment2 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── comment3 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── if1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── label1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── longtest1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── longtest2 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── longtest3 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── longtest4 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── openpar1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── openpar2 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── prep1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ └── trig1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ ├── python │ │ │ ├── .kateconfig │ │ │ ├── dedentBreak │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── dedentComment │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── dedentContinue │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── dedentElif1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── dedentElif2 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── dedentElse1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── dedentElse2 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── dedentElse3 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── dedentElse4 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── dedentElse5 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── dedentElse6 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── dedentExcept1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── dedentExcept2 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── dedentFinally1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── dedentFinally2 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── dedentPass │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── dedentRaise │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── dedentReturn │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── dedentReturn2 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── dedentReturn3 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── dict1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── dict2 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── function_args │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── function_args_indent │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── indentColon │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── indentComment │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── indentpaste1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── indentpaste2 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── indentpaste3 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── keepIndent1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── keepIndent2 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── keepIndent3 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── keepIndent4 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── keepIndent5 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── keepIndent6 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── list1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── list2 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── triggerchars │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── tuple1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── tuple2 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ └── wrapped_line │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ ├── replicode │ │ │ ├── .kateconfig │ │ │ └── return │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ ├── ruby │ │ │ ├── .kateconfig │ │ │ ├── array-comment1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── array-comment2 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── array-comment3 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── array-comment4 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── array-comment5 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── array1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── array10 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── array11 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── array12 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── array16 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── array17 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── array18 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── array19 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── array2 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── array20 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── array21 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── array22 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── array3 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── array4 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── array5 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── array6 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── array7 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── array8 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── array9 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── basic1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── basic2 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── basic3 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── basic4 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── basic5 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── block-comment1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── block-comment2 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── block-comment3 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── block-comment4 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── block-comment5 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── block-comment6 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── block-comment7 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── block-comment8 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── block01 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── block02 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── comment1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── comment2 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── comment3 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── comment4 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── comment5 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── comment6 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── do1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── do2 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── do3 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── do4 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── do5 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── do6 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── do7 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── empty-file1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── endless01 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── endless02 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── hash1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── hash10 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── hash11 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── hash12 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── hash16 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── hash17 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── hash18 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── hash19 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── hash2 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── hash20 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── hash21 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── hash22 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── hash3 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── hash4 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── hash5 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── hash6 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── hash7 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── hash8 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── hash9 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── heredoc1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── heredoc2 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── heredoc3 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── heredoc4 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── heredoc5 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── heredoc6 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── if10 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── if11 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── if20 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── if21 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── if22 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── if30 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── if31 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── indentpaste1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── indentpaste2 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── multiline1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── multiline10 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── multiline2 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── multiline3 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── multiline4 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── multiline5 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── multiline6 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── multiline7 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── multiline8 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── multiline9 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── no-do1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── no-do2 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── no-do3 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── no-do4 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── ops1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── ops11 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── ops12 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── ops13 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── ops14 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── ops15 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── ops16 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── ops17 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── ops18 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── ops2 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── ops21 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── ops22 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── ops23 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── ops24 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── ops25 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── ops26 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── ops27 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── ops28 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── ops3 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── ops4 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── ops5 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── ops6 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── ops7 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── ops8 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── plist-comment1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── plist-comment10 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── plist-comment2 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── plist-comment3 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── plist-comment4 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── plist-comment5 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── plist-comment6 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── plist-comment7 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── plist-comment8 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── plist-comment9 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── plist1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── plist10 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── plist11 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── plist12 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── plist13 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── plist14 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── plist15 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── plist16 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── plist17 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── plist18 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── plist19 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── plist2 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── plist20 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── plist3 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── plist4 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── plist5 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── plist6 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── plist7 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── plist8 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── plist9 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── regexp1 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── singleline01 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── singleline02 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── singleline03 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── singleline04 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── wordlist01 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── wordlist02 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── wordlist11 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── wordlist12 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ ├── wordlist21 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ │ └── wordlist22 │ │ │ │ ├── expected │ │ │ │ ├── input.js │ │ │ │ └── origin │ │ └── xml │ │ │ ├── .kateconfig │ │ │ ├── arguments1 │ │ │ ├── expected │ │ │ ├── input.js │ │ │ └── origin │ │ │ ├── arguments2 │ │ │ ├── expected │ │ │ ├── input.js │ │ │ └── origin │ │ │ ├── arguments3 │ │ │ ├── expected │ │ │ ├── input.js │ │ │ └── origin │ │ │ ├── arguments4 │ │ │ ├── expected │ │ │ ├── input.js │ │ │ └── origin │ │ │ ├── closing1 │ │ │ ├── expected │ │ │ ├── input.js │ │ │ └── origin │ │ │ ├── closing2 │ │ │ ├── expected │ │ │ ├── input.js │ │ │ └── origin │ │ │ ├── closing3 │ │ │ ├── expected │ │ │ ├── input.js │ │ │ └── origin │ │ │ ├── comment1 │ │ │ ├── README │ │ │ ├── expected │ │ │ ├── input.js │ │ │ └── origin │ │ │ ├── comment2 │ │ │ ├── expected │ │ │ ├── input.js │ │ │ └── origin │ │ │ ├── empty_lines │ │ │ ├── expected │ │ │ ├── input.js │ │ │ └── origin │ │ │ ├── keep_indent │ │ │ ├── expected │ │ │ ├── input.js │ │ │ └── origin │ │ │ ├── opening1 │ │ │ ├── expected │ │ │ ├── input.js │ │ │ └── origin │ │ │ ├── self_closing1 │ │ │ ├── expected │ │ │ ├── input.js │ │ │ └── origin │ │ │ ├── self_closing2 │ │ │ ├── expected │ │ │ ├── input.js │ │ │ └── origin │ │ │ ├── text1 │ │ │ ├── expected │ │ │ ├── input.js │ │ │ └── origin │ │ │ ├── text2 │ │ │ ├── expected │ │ │ ├── input.js │ │ │ └── origin │ │ │ └── xhtml1 │ │ │ ├── expected │ │ │ ├── input.js │ │ │ └── origin │ ├── indent_detect │ │ ├── .kateconfig │ │ ├── 2space.js │ │ ├── 4space.cpp │ │ ├── a.xml │ │ ├── bogus7spaces.md │ │ ├── indentdetect_test.cpp │ │ ├── main_bad_1_space.cpp │ │ └── tab.c │ ├── modelines.txt │ └── scripting │ │ ├── bug_317111.js │ │ └── bug_317892.js └── src │ ├── benchmarks │ └── bench_search.cpp │ ├── bugs_test.cpp │ ├── bugs_test.h │ ├── camelcursortest.cpp │ ├── camelcursortest.h │ ├── codecompletiontestmodel.cpp │ ├── codecompletiontestmodel.h │ ├── codecompletiontestmodels.cpp │ ├── codecompletiontestmodels.h │ ├── completion_test.cpp │ ├── completion_test.h │ ├── configinterface_test.cpp │ ├── configinterface_test.h │ ├── cursorwords_test.cpp │ ├── cursorwords_test.h │ ├── encodingtest.cpp │ ├── encodingtest.h │ ├── evaluate_script_test.cpp │ ├── evaluate_script_test.h │ ├── example.cpp │ ├── indentdetect_test.cpp │ ├── indentdetect_test.h │ ├── indenttest.cpp │ ├── indenttest.h │ ├── inlinenote_test.cpp │ ├── inlinenote_test.h │ ├── katedocument_test.cpp │ ├── katedocument_test.h │ ├── kateencodingtest.cpp │ ├── katefoldingtest.cpp │ ├── katefoldingtest.h │ ├── katemodemanager_benchmark.cpp │ ├── katemodemanager_benchmark.h │ ├── katemodemanager_test.cpp │ ├── katemodemanager_test.h │ ├── katemodemanager_test_base.cpp │ ├── katemodemanager_test_base.h │ ├── katetextbuffertest.cpp │ ├── katetextbuffertest.h │ ├── kateview_test.cpp │ ├── kateview_test.h │ ├── kte_documentcursor.cpp │ ├── kte_documentcursor.h │ ├── messagetest.cpp │ ├── messagetest.h │ ├── modificationsystem_test.cpp │ ├── modificationsystem_test.h │ ├── movingcursor_test.cpp │ ├── movingcursor_test.h │ ├── movingrange_test.cpp │ ├── movingrange_test.h │ ├── multicursortest.cpp │ ├── multicursortest.h │ ├── plaintextsearch_test.cpp │ ├── plaintextsearch_test.h │ ├── range_test.cpp │ ├── range_test.h │ ├── regexpsearch_test.cpp │ ├── regexpsearch_test.h │ ├── revision_test.cpp │ ├── revision_test.h │ ├── script_test_base.cpp │ ├── script_test_base.h │ ├── scriptdocument_test.cpp │ ├── scriptdocument_test.h │ ├── scripttester_test.cpp │ ├── scripttester_test.h │ ├── searchbar_test.cpp │ ├── searchbar_test.h │ ├── swapfiletest.cpp │ ├── swapfiletest.h │ ├── templatehandler_test.cpp │ ├── templatehandler_test.h │ ├── test.uc │ ├── testutils.cpp │ ├── testutils.h │ ├── undomanager_test.cpp │ ├── undomanager_test.h │ ├── variable_test.cpp │ ├── variable_test.h │ ├── vimode │ ├── CMakeLists.txt │ ├── base.cpp │ ├── base.h │ ├── completion.cpp │ ├── completion.h │ ├── emulatedcommandbar.cpp │ ├── emulatedcommandbar.h │ ├── emulatedcommandbarsetupandteardown.cpp │ ├── emulatedcommandbarsetupandteardown.h │ ├── fakecodecompletiontestmodel.cpp │ ├── fakecodecompletiontestmodel.h │ ├── hlsearch.cpp │ ├── hlsearch.h │ ├── keys.cpp │ ├── keys.h │ ├── modes.cpp │ ├── modes.h │ ├── view.cpp │ └── view.h │ ├── wordcompletiontest.cpp │ └── wordcompletiontest.h ├── cmake └── FindEditorConfig.cmake ├── config.h.cmake ├── docs ├── apidocs-groups.qdoc ├── coding-guidelines.qdoc ├── design.qdoc ├── pics │ ├── inlinenote.png │ ├── ktexteditorhierarchy.png │ └── texthint.png ├── plugin_hosting.qdoc ├── porting.qdoc └── porting_kf6.md ├── metainfo.yaml ├── po ├── af │ └── ktexteditor6.po ├── ar │ └── ktexteditor6.po ├── ast │ └── ktexteditor6.po ├── az │ └── ktexteditor6.po ├── be │ └── ktexteditor6.po ├── bg │ └── ktexteditor6.po ├── bn │ └── ktexteditor6.po ├── br │ └── ktexteditor6.po ├── bs │ └── ktexteditor6.po ├── ca │ └── ktexteditor6.po ├── ca@valencia │ └── ktexteditor6.po ├── cs │ └── ktexteditor6.po ├── cy │ └── ktexteditor6.po ├── da │ └── ktexteditor6.po ├── de │ └── ktexteditor6.po ├── el │ └── ktexteditor6.po ├── en_GB │ └── ktexteditor6.po ├── eo │ └── ktexteditor6.po ├── es │ └── ktexteditor6.po ├── et │ └── ktexteditor6.po ├── eu │ └── ktexteditor6.po ├── fa │ └── ktexteditor6.po ├── fi │ └── ktexteditor6.po ├── fr │ └── ktexteditor6.po ├── fy │ └── ktexteditor6.po ├── ga │ └── ktexteditor6.po ├── gl │ └── ktexteditor6.po ├── gu │ └── ktexteditor6.po ├── he │ └── ktexteditor6.po ├── hi │ └── ktexteditor6.po ├── hr │ └── ktexteditor6.po ├── hsb │ └── ktexteditor6.po ├── hu │ └── ktexteditor6.po ├── ia │ └── ktexteditor6.po ├── id │ └── ktexteditor6.po ├── is │ └── ktexteditor6.po ├── it │ └── ktexteditor6.po ├── ja │ └── ktexteditor6.po ├── ka │ └── ktexteditor6.po ├── kk │ └── ktexteditor6.po ├── km │ └── ktexteditor6.po ├── ko │ └── ktexteditor6.po ├── ku │ └── ktexteditor6.po ├── lb │ └── ktexteditor6.po ├── lt │ └── ktexteditor6.po ├── lv │ └── ktexteditor6.po ├── mai │ └── ktexteditor6.po ├── mk │ └── ktexteditor6.po ├── ml │ └── ktexteditor6.po ├── mr │ └── ktexteditor6.po ├── ms │ └── ktexteditor6.po ├── nb │ └── ktexteditor6.po ├── nds │ └── ktexteditor6.po ├── ne │ └── ktexteditor6.po ├── nl │ └── ktexteditor6.po ├── nn │ └── ktexteditor6.po ├── oc │ └── ktexteditor6.po ├── pa │ └── ktexteditor6.po ├── pl │ └── ktexteditor6.po ├── pt │ └── ktexteditor6.po ├── pt_BR │ └── ktexteditor6.po ├── ro │ └── ktexteditor6.po ├── ru │ └── ktexteditor6.po ├── sa │ └── ktexteditor6.po ├── se │ └── ktexteditor6.po ├── si │ └── ktexteditor6.po ├── sk │ └── ktexteditor6.po ├── sl │ └── ktexteditor6.po ├── sq │ └── ktexteditor6.po ├── sr │ └── ktexteditor6.po ├── sr@ijekavian │ └── ktexteditor6.po ├── sr@ijekavianlatin │ └── ktexteditor6.po ├── sr@latin │ └── ktexteditor6.po ├── sv │ └── ktexteditor6.po ├── ta │ └── ktexteditor6.po ├── tg │ └── ktexteditor6.po ├── th │ └── ktexteditor6.po ├── tr │ └── ktexteditor6.po ├── ug │ └── ktexteditor6.po ├── uk │ └── ktexteditor6.po ├── uz │ └── ktexteditor6.po ├── uz@cyrillic │ └── ktexteditor6.po ├── vi │ └── ktexteditor6.po ├── wa │ └── ktexteditor6.po ├── xh │ └── ktexteditor6.po ├── zh_CN │ └── ktexteditor6.po └── zh_TW │ └── ktexteditor6.po ├── src ├── CMakeLists.txt ├── Messages.sh ├── README.md ├── TODO ├── buffer │ ├── katesecuretextbuffer.cpp │ ├── katesecuretextbuffer_p.h │ ├── katetextblock.cpp │ ├── katetextblock.h │ ├── katetextbuffer.cpp │ ├── katetextbuffer.h │ ├── katetextcursor.cpp │ ├── katetextcursor.h │ ├── katetextfolding.cpp │ ├── katetextfolding.h │ ├── katetexthistory.cpp │ ├── katetexthistory.h │ ├── katetextline.cpp │ ├── katetextline.h │ ├── katetextloader.h │ ├── katetextrange.cpp │ ├── katetextrange.h │ └── org.kde.ktexteditor6.katetextbuffer.actions ├── completion │ ├── documentation_tip.cpp │ ├── documentation_tip.h │ ├── expandingtree │ │ ├── expandingwidgetmodel.cpp │ │ └── expandingwidgetmodel.h │ ├── kateargumenthintmodel.cpp │ ├── kateargumenthintmodel.h │ ├── kateargumenthinttree.cpp │ ├── kateargumenthinttree.h │ ├── katecompletiondelegate.cpp │ ├── katecompletiondelegate.h │ ├── katecompletionmodel.cpp │ ├── katecompletionmodel.h │ ├── katecompletiontree.cpp │ ├── katecompletiontree.h │ ├── katecompletionwidget.cpp │ ├── katecompletionwidget.h │ ├── katekeywordcompletion.cpp │ ├── katekeywordcompletion.h │ ├── katemodelinecompletion.cpp │ ├── katemodelinecompletion.h │ ├── katewordcompletion.cpp │ └── katewordcompletion.h ├── data │ ├── kate.svg │ ├── katemoderc │ ├── katepart5ui.rc │ └── ktexteditor.qrc ├── dialogs │ ├── bordersappearanceconfigwidget.ui │ ├── clipboardhistorydialog.cpp │ ├── clipboardhistorydialog.h │ ├── completionconfigtab.ui │ ├── editconfigwidget.ui │ ├── filetypeconfigwidget.ui │ ├── indentationconfigwidget.ui │ ├── kateconfigpage.cpp │ ├── kateconfigpage.h │ ├── katedialogs.cpp │ ├── katedialogs.h │ ├── navigationconfigwidget.ui │ ├── opensaveconfigadvwidget.ui │ ├── opensaveconfigwidget.ui │ ├── spellcheckconfigwidget.ui │ ├── statusbarconfigwidget.ui │ └── textareaappearanceconfigwidget.ui ├── document │ ├── editorconfig.cpp │ ├── editorconfig.h │ ├── katebuffer.cpp │ ├── katebuffer.h │ ├── katedocument.cpp │ └── katedocument.h ├── draft │ └── foldinginterface.h ├── export │ ├── abstractexporter.h │ ├── exporter.cpp │ ├── exporter.h │ ├── htmlexporter.cpp │ └── htmlexporter.h ├── include │ ├── CMakeLists.txt │ └── ktexteditor │ │ ├── abstractannotationitemdelegate.h │ │ ├── annotationinterface.h │ │ ├── application.h │ │ ├── attribute.h │ │ ├── codecompletionmodel.h │ │ ├── codecompletionmodelcontrollerinterface.h │ │ ├── command.h │ │ ├── configpage.h │ │ ├── cursor.h │ │ ├── document.h │ │ ├── documentcursor.h │ │ ├── editor.h │ │ ├── inlinenote.h │ │ ├── inlinenoteprovider.h │ │ ├── linerange.h │ │ ├── mainwindow.h │ │ ├── message.h │ │ ├── movingcursor.h │ │ ├── movingrange.h │ │ ├── movingrangefeedback.h │ │ ├── plugin.h │ │ ├── range.h │ │ ├── sessionconfiginterface.h │ │ ├── texthintinterface.h │ │ └── view.h ├── inputmode │ ├── kateabstractinputmode.cpp │ ├── kateabstractinputmode.h │ ├── kateabstractinputmodefactory.cpp │ ├── kateabstractinputmodefactory.h │ ├── katenormalinputmode.cpp │ ├── katenormalinputmode.h │ ├── katenormalinputmodefactory.cpp │ ├── katenormalinputmodefactory.h │ ├── kateviinputmode.cpp │ ├── kateviinputmode.h │ ├── kateviinputmodefactory.cpp │ └── kateviinputmodefactory.h ├── ktexteditor-index.qdoc ├── ktexteditor.qdoc ├── ktexteditor.qdocconf ├── mode │ ├── katemodeconfigpage.cpp │ ├── katemodeconfigpage.h │ ├── katemodemanager.cpp │ ├── katemodemanager.h │ ├── katemodemenu.cpp │ ├── katemodemenu.h │ ├── katemodemenulist.cpp │ └── katemodemenulist.h ├── part │ ├── CMakeLists.txt │ ├── katepart.cpp │ └── katepart.json.in ├── printing │ ├── kateprinter.cpp │ ├── kateprinter.h │ ├── printconfigwidgets.cpp │ ├── printconfigwidgets.h │ ├── printpainter.cpp │ └── printpainter.h ├── render │ ├── katelayoutcache.cpp │ ├── katelayoutcache.h │ ├── katelinelayout.cpp │ ├── katelinelayout.h │ ├── katerenderer.cpp │ ├── katerenderer.h │ ├── katerenderrange.cpp │ ├── katerenderrange.h │ ├── katetextlayout.cpp │ └── katetextlayout.h ├── script │ ├── data │ │ ├── CMakeLists.txt │ │ ├── commands │ │ │ ├── emmet.js │ │ │ ├── jumpMatchingIndent.js │ │ │ ├── navigation.js │ │ │ └── utils.js │ │ ├── indentation │ │ │ ├── ada.js │ │ │ ├── cmake.js │ │ │ ├── cppstyle.README.md │ │ │ ├── cppstyle.js │ │ │ ├── cstyle.js │ │ │ ├── haskell.js │ │ │ ├── julia.js │ │ │ ├── latex.js │ │ │ ├── lilypond.js │ │ │ ├── lisp.js │ │ │ ├── pascal.js │ │ │ ├── python.js │ │ │ ├── r.js │ │ │ ├── replicode.js │ │ │ ├── ruby.js │ │ │ └── xml.js │ │ ├── indentation_template.js │ │ ├── libraries │ │ │ ├── cmake_indenter_config.js │ │ │ ├── cursor.js │ │ │ ├── documentcursor.js │ │ │ ├── emmet │ │ │ │ ├── editor_interface.js │ │ │ │ └── lib.js │ │ │ ├── range.js │ │ │ ├── string.js │ │ │ ├── underscore.js │ │ │ └── utils.js │ │ └── test_selectioniface.js │ ├── katecommandlinescript.cpp │ ├── katecommandlinescript.h │ ├── kateindentscript.cpp │ ├── kateindentscript.h │ ├── katescript.cpp │ ├── katescript.h │ ├── katescriptaction.cpp │ ├── katescriptaction.h │ ├── katescriptdocument.cpp │ ├── katescriptdocument.h │ ├── katescripteditor.cpp │ ├── katescripteditor.h │ ├── katescripthelpers.cpp │ ├── katescripthelpers.h │ ├── katescriptmanager.cpp │ ├── katescriptmanager.h │ ├── katescriptview.cpp │ ├── katescriptview.h │ ├── scriptcursor.h │ └── scriptrange.h ├── scripttester │ ├── README.md │ ├── ktexteditorscripttester.cpp │ ├── ktexteditorscripttester.qrc │ ├── scripttester.cpp │ ├── scripttester_p.h │ └── testframework.js ├── search │ ├── katematch.cpp │ ├── katematch.h │ ├── kateplaintextsearch.cpp │ ├── kateplaintextsearch.h │ ├── kateregexpsearch.cpp │ ├── kateregexpsearch.h │ ├── katesearchbar.cpp │ ├── katesearchbar.h │ ├── searchbarincremental.ui │ └── searchbarpower.ui ├── spellcheck │ ├── ontheflycheck.cpp │ ├── ontheflycheck.h │ ├── prefixstore.cpp │ ├── prefixstore.h │ ├── spellcheck.cpp │ ├── spellcheck.h │ ├── spellcheckbar.cpp │ ├── spellcheckbar.h │ ├── spellcheckbar.ui │ ├── spellcheckdialog.cpp │ ├── spellcheckdialog.h │ ├── spellingmenu.cpp │ └── spellingmenu.h ├── swapfile │ ├── kateswapdiffcreator.cpp │ ├── kateswapdiffcreator.h │ ├── kateswapfile.cpp │ └── kateswapfile.h ├── syntax │ ├── katecategorydrawer.cpp │ ├── katecategorydrawer.h │ ├── katecolortreewidget.cpp │ ├── katecolortreewidget.h │ ├── kateextendedattribute.h │ ├── katehighlight.cpp │ ├── katehighlight.h │ ├── katehighlightingcmds.cpp │ ├── katehighlightingcmds.h │ ├── katehighlightmenu.cpp │ ├── katehighlightmenu.h │ ├── katestyletreewidget.cpp │ ├── katestyletreewidget.h │ ├── katesyntaxmanager.cpp │ ├── katesyntaxmanager.h │ ├── katethemeconfig.cpp │ └── katethemeconfig.h ├── undo │ ├── kateundo.cpp │ ├── kateundo.h │ ├── kateundomanager.cpp │ └── kateundomanager.h ├── utils │ ├── application.cpp │ ├── attribute.cpp │ ├── codecompletionmodel.cpp │ ├── codecompletionmodelcontrollerinterface.cpp │ ├── document.cpp │ ├── documentcursor.cpp │ ├── kateautoindent.cpp │ ├── kateautoindent.h │ ├── katebookmarks.cpp │ ├── katebookmarks.h │ ├── katecmd.cpp │ ├── katecmd.h │ ├── katecmds.cpp │ ├── katecmds.h │ ├── katecommandrangeexpressionparser.cpp │ ├── katecommandrangeexpressionparser.h │ ├── kateconfig.cpp │ ├── kateconfig.h │ ├── kateglobal.cpp │ ├── kateglobal.h │ ├── kateindentdetecter.cpp │ ├── kateindentdetecter.h │ ├── katesedcmd.cpp │ ├── katesedcmd.h │ ├── katetemplatehandler.cpp │ ├── katetemplatehandler.h │ ├── katevariableexpansionhelpers.cpp │ ├── katevariableexpansionhelpers.h │ ├── katevariableexpansionmanager.cpp │ ├── katevariableexpansionmanager.h │ ├── ktexteditor.cpp │ ├── mainwindow.cpp │ ├── messageinterface.cpp │ ├── movingapi.cpp │ ├── range.cpp │ ├── variable.cpp │ └── variable.h ├── variableeditor │ ├── variableeditor.cpp │ ├── variableeditor.h │ ├── variableitem.cpp │ ├── variableitem.h │ ├── variablelineedit.cpp │ ├── variablelineedit.h │ ├── variablelistview.cpp │ └── variablelistview.h ├── view │ ├── inlinenotedata.h │ ├── kateanimation.cpp │ ├── kateanimation.h │ ├── kateannotationitemdelegate.cpp │ ├── kateannotationitemdelegate.h │ ├── katefadeeffect.cpp │ ├── katefadeeffect.h │ ├── katemessagewidget.cpp │ ├── katemessagewidget.h │ ├── katestatusbar.cpp │ ├── katestatusbar.h │ ├── katetextanimation.cpp │ ├── katetextanimation.h │ ├── katetextpreview.cpp │ ├── katetextpreview.h │ ├── kateview.cpp │ ├── kateview.h │ ├── kateviewaccessible.h │ ├── kateviewhelpers.cpp │ ├── kateviewhelpers.h │ ├── kateviewinternal.cpp │ ├── kateviewinternal.h │ ├── screenshotdialog.cpp │ ├── screenshotdialog.h │ ├── wordcounter.cpp │ └── wordcounter.h └── vimode │ ├── appcommands.cpp │ ├── appcommands.h │ ├── cmds.cpp │ ├── cmds.h │ ├── command.cpp │ ├── command.h │ ├── commandrangeexpressionparser.cpp │ ├── commandrangeexpressionparser.h │ ├── completion.cpp │ ├── completion.h │ ├── completionrecorder.cpp │ ├── completionrecorder.h │ ├── completionreplayer.cpp │ ├── completionreplayer.h │ ├── config │ ├── configtab.cpp │ ├── configtab.h │ └── configwidget.ui │ ├── definitions.h │ ├── emulatedcommandbar │ ├── activemode.cpp │ ├── activemode.h │ ├── commandmode.cpp │ ├── commandmode.h │ ├── completer.cpp │ ├── completer.h │ ├── emulatedcommandbar.cpp │ ├── emulatedcommandbar.h │ ├── interactivesedreplacemode.cpp │ ├── interactivesedreplacemode.h │ ├── matchhighlighter.cpp │ ├── matchhighlighter.h │ ├── searchmode.cpp │ └── searchmode.h │ ├── globalstate.cpp │ ├── globalstate.h │ ├── history.cpp │ ├── history.h │ ├── inputmodemanager.cpp │ ├── inputmodemanager.h │ ├── jumps.cpp │ ├── jumps.h │ ├── keyevent.cpp │ ├── keyevent.h │ ├── keymapper.cpp │ ├── keymapper.h │ ├── keyparser.cpp │ ├── keyparser.h │ ├── lastchangerecorder.cpp │ ├── lastchangerecorder.h │ ├── macrorecorder.cpp │ ├── macrorecorder.h │ ├── macros.cpp │ ├── macros.h │ ├── mappings.cpp │ ├── mappings.h │ ├── marks.cpp │ ├── marks.h │ ├── modes │ ├── insertvimode.cpp │ ├── insertvimode.h │ ├── modebase.cpp │ ├── modebase.h │ ├── normalvimode.cpp │ ├── normalvimode.h │ ├── replacevimode.cpp │ ├── replacevimode.h │ ├── visualvimode.cpp │ └── visualvimode.h │ ├── motion.cpp │ ├── motion.h │ ├── range.cpp │ ├── range.h │ ├── registers.cpp │ ├── registers.h │ ├── searcher.cpp │ └── searcher.h └── templates ├── .clang-format ├── CMakeLists.txt └── ktexteditor6-plugin ├── CMakeLists.txt ├── LICENSES └── LGPL-2.0-or-later.txt ├── README.md ├── ktexteditor6-plugin.kdevtemplate ├── ktexteditor6-plugin.png └── src ├── %{APPNAMELC}.json ├── %{APPNAMELC}plugin.cpp ├── %{APPNAMELC}plugin.h ├── %{APPNAMELC}view.cpp ├── %{APPNAMELC}view.h ├── CMakeLists.txt └── Messages.sh /.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/.git-blame-ignore-revs -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.kateconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/.kateconfig -------------------------------------------------------------------------------- /.kateproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/.kateproject -------------------------------------------------------------------------------- /.kde-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/.kde-ci.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /ExtraDesktop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/ExtraDesktop.sh -------------------------------------------------------------------------------- /KF6TextEditorConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/KF6TextEditorConfig.cmake.in -------------------------------------------------------------------------------- /LICENSES/BSD-2-Clause.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/LICENSES/BSD-2-Clause.txt -------------------------------------------------------------------------------- /LICENSES/CC0-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/LICENSES/CC0-1.0.txt -------------------------------------------------------------------------------- /LICENSES/LGPL-2.0-only.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/LICENSES/LGPL-2.0-only.txt -------------------------------------------------------------------------------- /LICENSES/LGPL-2.0-or-later.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/LICENSES/LGPL-2.0-or-later.txt -------------------------------------------------------------------------------- /LICENSES/MIT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/LICENSES/MIT.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/README.md -------------------------------------------------------------------------------- /autotests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/autotests/CMakeLists.txt -------------------------------------------------------------------------------- /autotests/input/.clang-format: -------------------------------------------------------------------------------- 1 | DisableFormat: true 2 | SortIncludes: false 3 | -------------------------------------------------------------------------------- /autotests/input/.gitignore: -------------------------------------------------------------------------------- 1 | actual 2 | -------------------------------------------------------------------------------- /autotests/input/bug205447.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/autotests/input/bug205447.txt -------------------------------------------------------------------------------- /autotests/input/bug311866.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/autotests/input/bug311866.cpp -------------------------------------------------------------------------------- /autotests/input/bug313759.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/autotests/input/bug313759.js -------------------------------------------------------------------------------- /autotests/input/bug313759.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/autotests/input/bug313759.txt -------------------------------------------------------------------------------- /autotests/input/bug313769.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/autotests/input/bug313769.cpp -------------------------------------------------------------------------------- /autotests/input/encoding/utf8-bom-only.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autotests/input/encoding/utf8.txt: -------------------------------------------------------------------------------- 1 | Test 2 | Straße 3 | Christoph 4 | Äußerung 5 | Überall 6 | Köhler 7 | $perlvar -------------------------------------------------------------------------------- /autotests/input/indent/R/bracketsBreak/expected: -------------------------------------------------------------------------------- 1 | test( 2 | text 3 | ) 4 | -------------------------------------------------------------------------------- /autotests/input/indent/R/bracketsBreak/origin: -------------------------------------------------------------------------------- 1 | test() 2 | -------------------------------------------------------------------------------- /autotests/input/indent/R/closeBracket/expected: -------------------------------------------------------------------------------- 1 | test( 2 | text 3 | ) 4 | -------------------------------------------------------------------------------- /autotests/input/indent/R/closeBracket/origin: -------------------------------------------------------------------------------- 1 | test( 2 | text 3 | -------------------------------------------------------------------------------- /autotests/input/indent/R/indentAssign/origin: -------------------------------------------------------------------------------- 1 | tmp <- 2 | -------------------------------------------------------------------------------- /autotests/input/indent/R/indentBracket/origin: -------------------------------------------------------------------------------- 1 | plot(y ~ x,) 2 | -------------------------------------------------------------------------------- /autotests/input/indent/R/indentFormula/origin: -------------------------------------------------------------------------------- 1 | lm(Response ~ Var1 + 2 | -------------------------------------------------------------------------------- /autotests/input/indent/R/indentpaste1/origin: -------------------------------------------------------------------------------- 1 | if(1) { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /autotests/input/indent/R/indentpaste2/origin: -------------------------------------------------------------------------------- 1 | if(1) { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /autotests/input/indent/ada/newline/origin: -------------------------------------------------------------------------------- 1 | begin 2 | if e then 3 | -------------------------------------------------------------------------------- /autotests/input/indent/ada/openpar2/origin: -------------------------------------------------------------------------------- 1 | begin 2 | f() 3 | -------------------------------------------------------------------------------- /autotests/input/indent/ada/prep1/expected: -------------------------------------------------------------------------------- 1 | begin 2 | s1; 3 | # 4 | -------------------------------------------------------------------------------- /autotests/input/indent/ada/prep1/origin: -------------------------------------------------------------------------------- 1 | begin 2 | -------------------------------------------------------------------------------- /autotests/input/indent/ada/trig1/origin: -------------------------------------------------------------------------------- 1 | begin 2 | loop 3 | -------------------------------------------------------------------------------- /autotests/input/indent/cmake/enter2/expected: -------------------------------------------------------------------------------- 1 | some( 2 | ok SOME TEXT HERE) 3 | -------------------------------------------------------------------------------- /autotests/input/indent/cmake/enter2/origin: -------------------------------------------------------------------------------- 1 | some(SOME TEXT HERE) 2 | -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/autobrackets1/origin: -------------------------------------------------------------------------------- 1 | class X 2 | { 3 | void foo() 4 | }; 5 | -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/colon1/expected: -------------------------------------------------------------------------------- 1 | class test 2 | : public ok 3 | -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/colon1/origin: -------------------------------------------------------------------------------- 1 | class test 2 | -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/colon2/origin: -------------------------------------------------------------------------------- 1 | class test 2 | { 3 | 4 | }; 5 | -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/colon5/expected: -------------------------------------------------------------------------------- 1 | for (auto i : ok) 2 | -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/colon5/origin: -------------------------------------------------------------------------------- 1 | for (auto i -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/colon7/origin: -------------------------------------------------------------------------------- 1 | some 2 | std -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/colon8/origin: -------------------------------------------------------------------------------- 1 | ;ec 2 | case some -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/colon9/expected: -------------------------------------------------------------------------------- 1 | class some : public ok 2 | -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/colon9/origin: -------------------------------------------------------------------------------- 1 | class some -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/comma2/expected: -------------------------------------------------------------------------------- 1 | foo(ok, ok); 2 | -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/comma2/origin: -------------------------------------------------------------------------------- 1 | foo(ok); -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/comma3/origin: -------------------------------------------------------------------------------- 1 | class test 2 | : public base -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/comment1/origin: -------------------------------------------------------------------------------- 1 | int smth; -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/comment10/origin: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | */ 4 | -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/comment11/expected: -------------------------------------------------------------------------------- 1 | const char* tmp = "////ok 2 | -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/comment11/origin: -------------------------------------------------------------------------------- 1 | const char* tmp = " -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/comment12/expected: -------------------------------------------------------------------------------- 1 | /* some */ 2 | ok 3 | -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/comment12/origin: -------------------------------------------------------------------------------- 1 | /* some */ -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/comment13/origin: -------------------------------------------------------------------------------- 1 | /* some */ -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/comment16/origin: -------------------------------------------------------------------------------- 1 | int a = 12; -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/comment17/origin: -------------------------------------------------------------------------------- 1 | // some -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/comment2/origin: -------------------------------------------------------------------------------- 1 | int smth; -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/comment20/expected: -------------------------------------------------------------------------------- 1 | ///// ok 2 | -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/comment20/origin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/comment3/expected: -------------------------------------------------------------------------------- 1 | 2 | ok// comment 3 | -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/comment3/origin: -------------------------------------------------------------------------------- 1 | // comment -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/comment4/expected: -------------------------------------------------------------------------------- 1 | int smth; 2 | // comment 3 | -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/comment4/input.js: -------------------------------------------------------------------------------- 1 | v.setCursorPosition(0,9); 2 | v.enter(); 3 | -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/comment4/origin: -------------------------------------------------------------------------------- 1 | int smth;// comment -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/comment5/input.js: -------------------------------------------------------------------------------- 1 | v.setCursorPosition(0,8); 2 | v.enter(); 3 | -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/comment5/origin: -------------------------------------------------------------------------------- 1 | int smth; // comment -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/comment6/input.js: -------------------------------------------------------------------------------- 1 | v.setCursorPosition(0,66); 2 | v.enter(); 3 | -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/comment7/expected: -------------------------------------------------------------------------------- 1 | /* 2 | * ok 3 | */ 4 | -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/comment7/origin: -------------------------------------------------------------------------------- 1 | /* -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/comment8/origin: -------------------------------------------------------------------------------- 1 | /* -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/comment9/origin: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | */ 4 | -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/do1/expected: -------------------------------------------------------------------------------- 1 | do 2 | ok 3 | -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/do1/origin: -------------------------------------------------------------------------------- 1 | do -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/dot1/expected: -------------------------------------------------------------------------------- 1 | some.ok() 2 | 3 | catch (...)ok 4 | -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/dot1/origin: -------------------------------------------------------------------------------- 1 | some() 2 | 3 | catch 4 | -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/dot3/origin: -------------------------------------------------------------------------------- 1 | #include <> 2 | auto literal = "some text"; 3 | // comment -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/doxygen1/expected: -------------------------------------------------------------------------------- 1 | /** 2 | * ok 3 | */ 4 | -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/doxygen1/origin: -------------------------------------------------------------------------------- 1 | /** -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/doxygen2/origin: -------------------------------------------------------------------------------- 1 | /** -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/doxygen3/origin: -------------------------------------------------------------------------------- 1 | /** 2 | * 3 | */ 4 | -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/doxygen4/expected: -------------------------------------------------------------------------------- 1 | /// ok 2 | -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/doxygen4/origin: -------------------------------------------------------------------------------- 1 | // -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/doxygen5/input.js: -------------------------------------------------------------------------------- 1 | v.setCursorPosition(1,4); 2 | v.enter(); 3 | -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/doxygen5/origin: -------------------------------------------------------------------------------- 1 | /** 2 | * ok 3 | */ 4 | -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/doxygen8/expected: -------------------------------------------------------------------------------- 1 | /// ok 2 | -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/doxygen8/origin: -------------------------------------------------------------------------------- 1 | // -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/doxygen9/origin: -------------------------------------------------------------------------------- 1 | // -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/equal1/expected: -------------------------------------------------------------------------------- 1 | int a = 2 | ok 3 | -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/equal1/origin: -------------------------------------------------------------------------------- 1 | int a = -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/equal2/expected: -------------------------------------------------------------------------------- 1 | int a 2 | = 3 | -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/equal2/input.js: -------------------------------------------------------------------------------- 1 | v.setCursorPosition(0,5); 2 | v.enter(); 3 | -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/equal2/origin: -------------------------------------------------------------------------------- 1 | int a = -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/equal4/expected: -------------------------------------------------------------------------------- 1 | int a = ok; 2 | -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/equal4/origin: -------------------------------------------------------------------------------- 1 | int a -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/equal5/origin: -------------------------------------------------------------------------------- 1 | a 2 | b 3 | c 4 | -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/equal6/origin: -------------------------------------------------------------------------------- 1 | a 2 | b 3 | -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/exclamation1/expected: -------------------------------------------------------------------------------- 1 | !ok 2 | -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/exclamation1/origin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/exclamation2/expected: -------------------------------------------------------------------------------- 1 | if (!ok 2 | -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/exclamation2/origin: -------------------------------------------------------------------------------- 1 | if ( -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/exclamation3/expected: -------------------------------------------------------------------------------- 1 | if (!ok && !ok) 2 | -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/exclamation3/origin: -------------------------------------------------------------------------------- 1 | if (!ok && -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/exclamation4/expected: -------------------------------------------------------------------------------- 1 | foo 2 | -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/lab1/origin: -------------------------------------------------------------------------------- 1 | static_cast -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/lab10/expected: -------------------------------------------------------------------------------- 1 | // some 2 | -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/lab3/origin: -------------------------------------------------------------------------------- 1 | template -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/lab4/expected: -------------------------------------------------------------------------------- 1 | smth < ok 2 | -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/lab4/origin: -------------------------------------------------------------------------------- 1 | smth -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/lab5/expected: -------------------------------------------------------------------------------- 1 | 1smth, 2 | -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/lab8/origin: -------------------------------------------------------------------------------- 1 | some, -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/lab9/expected: -------------------------------------------------------------------------------- 1 | some << ok; 2 | -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/lab9/origin: -------------------------------------------------------------------------------- 1 | some -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/normal1/origin: -------------------------------------------------------------------------------- 1 | int main() { 2 | bla; -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/normal10/expected: -------------------------------------------------------------------------------- 1 | const char* tmp = "{ok}"; 2 | -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/normal10/origin: -------------------------------------------------------------------------------- 1 | const char* tmp = " -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/normal11/expected: -------------------------------------------------------------------------------- 1 | ///{ok} 2 | -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/normal11/origin: -------------------------------------------------------------------------------- 1 | /// -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/normal12/expected: -------------------------------------------------------------------------------- 1 | namespace { 2 | ok 3 | -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/normal12/origin: -------------------------------------------------------------------------------- 1 | namespace { -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/normal2/input.js: -------------------------------------------------------------------------------- 1 | v.setCursorPosition(1,8); 2 | v.enter(); 3 | -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/normal2/origin: -------------------------------------------------------------------------------- 1 | int main() { 2 | bla;blu; -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/normal21/expected: -------------------------------------------------------------------------------- 1 | auto s = std::string{"ok"}; 2 | -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/normal21/input.js: -------------------------------------------------------------------------------- 1 | v.setCursorPosition(0, 20); 2 | v.type("{\"ok\"};"); 3 | -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/normal21/origin: -------------------------------------------------------------------------------- 1 | auto s = std::string -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/normal24/origin: -------------------------------------------------------------------------------- 1 | auto some = []() -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/normal3/input.js: -------------------------------------------------------------------------------- 1 | v.setCursorPosition(1,8); 2 | v.enter(); 3 | -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/normal7/expected: -------------------------------------------------------------------------------- 1 | int a[123] = {ok}; 2 | -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/normal7/origin: -------------------------------------------------------------------------------- 1 | int a[123] = -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/normal8/expected: -------------------------------------------------------------------------------- 1 | class test 2 | { 3 | };ok 4 | -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/normal8/origin: -------------------------------------------------------------------------------- 1 | class test 2 | { 3 | -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/normal9/expected: -------------------------------------------------------------------------------- 1 | enum test {};ok 2 | -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/normal9/origin: -------------------------------------------------------------------------------- 1 | enum test -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/parens1/origin: -------------------------------------------------------------------------------- 1 | foo( -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/plist1/origin: -------------------------------------------------------------------------------- 1 | foo(); -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/plist3/origin: -------------------------------------------------------------------------------- 1 | typedef boost::mpl::eval_if<> -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/preprocessor1/expected: -------------------------------------------------------------------------------- 1 | #ifdef 2 | -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/preprocessor1/origin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/preprocessor2/expected: -------------------------------------------------------------------------------- 1 | #ifdef NDEBUG 2 | # define OK 3 | -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/preprocessor2/origin: -------------------------------------------------------------------------------- 1 | #ifdef NDEBUG 2 | -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/preprocessor4/expected: -------------------------------------------------------------------------------- 1 | #define MACRO \ 2 | ok 3 | -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/preprocessor4/origin: -------------------------------------------------------------------------------- 1 | #define MACRO -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/preprocessor5/origin: -------------------------------------------------------------------------------- 1 | #define MACRO \ 2 | ok -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/quote2/expected: -------------------------------------------------------------------------------- 1 | LR"~(ok)~" 2 | -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/quote2/origin: -------------------------------------------------------------------------------- 1 | LR 2 | -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/quote3/expected: -------------------------------------------------------------------------------- 1 | auto a = u8R"~(ok)~" 2 | -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/quote3/origin: -------------------------------------------------------------------------------- 1 | auto a = u8R 2 | -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/semicolon1/expected: -------------------------------------------------------------------------------- 1 | for (blah) 2 | break;ok 3 | -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/semicolon1/origin: -------------------------------------------------------------------------------- 1 | for (blah) 2 | break -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/semicolon2/origin: -------------------------------------------------------------------------------- 1 | for (blah) 2 | if (some) 3 | continue -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/semicolon4/expected: -------------------------------------------------------------------------------- 1 | auto var = some_call(arg1, arg2);ok 2 | -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/semicolon4/origin: -------------------------------------------------------------------------------- 1 | auto var = some_call(arg1, arg2) -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/semicolon5/expected: -------------------------------------------------------------------------------- 1 | auto var = some_call(arg1, arg2;ok); 2 | -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/semicolon5/origin: -------------------------------------------------------------------------------- 1 | auto var = some_call(arg1, arg2); -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/semicolon6/expected: -------------------------------------------------------------------------------- 1 | for (auto it = begin(list); it != ok; ++it) 2 | -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/semicolon6/origin: -------------------------------------------------------------------------------- 1 | for (auto it = begin(list)) -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/semicolon8/expected: -------------------------------------------------------------------------------- 1 | some[call()];ok 2 | -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/semicolon8/origin: -------------------------------------------------------------------------------- 1 | some[call()] -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/shortcut1/expected: -------------------------------------------------------------------------------- 1 | some();ok 2 | -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/shortcut1/origin: -------------------------------------------------------------------------------- 1 | some() -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/shortcut10/expected: -------------------------------------------------------------------------------- 1 | some() ^ ok 2 | -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/shortcut10/origin: -------------------------------------------------------------------------------- 1 | some() -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/shortcut11/expected: -------------------------------------------------------------------------------- 1 | some()}ok 2 | -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/shortcut11/origin: -------------------------------------------------------------------------------- 1 | some() -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/shortcut12/expected: -------------------------------------------------------------------------------- 1 | some() ? ok 2 | -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/shortcut12/origin: -------------------------------------------------------------------------------- 1 | some() -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/shortcut2/origin: -------------------------------------------------------------------------------- 1 | some() 2 | some{} 3 | -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/shortcut3/expected: -------------------------------------------------------------------------------- 1 | some()>ok 2 | -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/shortcut3/origin: -------------------------------------------------------------------------------- 1 | some() -------------------------------------------------------------------------------- /autotests/input/indent/cppstyle/shortcut4/expected: -------------------------------------------------------------------------------- 1 | some() 1, 2 | -------------------------------------------------------------------------------- /autotests/input/indent/ruby/hash2/expected: -------------------------------------------------------------------------------- 1 | hash = { 2 | :a => 1 3 | -------------------------------------------------------------------------------- /autotests/input/indent/ruby/hash2/origin: -------------------------------------------------------------------------------- 1 | hash = { 2 | -------------------------------------------------------------------------------- /autotests/input/indent/ruby/hash3/origin: -------------------------------------------------------------------------------- 1 | hash = { 2 | :a => 1, 3 | -------------------------------------------------------------------------------- /autotests/input/indent/ruby/hash7/origin: -------------------------------------------------------------------------------- 1 | hash = {:a => 1, 2 | -------------------------------------------------------------------------------- /autotests/input/indent/ruby/heredoc1/expected: -------------------------------------------------------------------------------- 1 | doc = < 2 | text 3 | -------------------------------------------------------------------------------- /autotests/input/indent/xml/closing2/origin: -------------------------------------------------------------------------------- 1 | 2 | text 3 | -------------------------------------------------------------------------------- /autotests/input/indent/xml/closing3/origin: -------------------------------------------------------------------------------- 1 | 2 | text 3 | -------------------------------------------------------------------------------- /autotests/input/indent/xml/comment1/README: -------------------------------------------------------------------------------- 1 | indentation in comments should not be touched 2 | -------------------------------------------------------------------------------- /autotests/input/indent/xml/keep_indent/expected: -------------------------------------------------------------------------------- 1 | 2 | PASS 3 | -------------------------------------------------------------------------------- /autotests/input/indent/xml/keep_indent/origin: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /autotests/input/indent/xml/opening1/origin: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /autotests/input/indent/xml/self_closing1/origin: -------------------------------------------------------------------------------- 1 | text 2 | -------------------------------------------------------------------------------- /autotests/input/indent/xml/text1/expected: -------------------------------------------------------------------------------- 1 | text 2 | PASS 3 | -------------------------------------------------------------------------------- /autotests/input/indent/xml/text1/origin: -------------------------------------------------------------------------------- 1 | text 2 | -------------------------------------------------------------------------------- /autotests/input/indent/xml/text2/expected: -------------------------------------------------------------------------------- 1 | text 2 | PASS 3 | -------------------------------------------------------------------------------- /autotests/input/indent/xml/text2/origin: -------------------------------------------------------------------------------- 1 | text 2 | -------------------------------------------------------------------------------- /autotests/input/indent/xml/xhtml1/origin: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /autotests/input/indent_detect/.kateconfig: -------------------------------------------------------------------------------- 1 | // dummy to avoid picking repository global one 2 | -------------------------------------------------------------------------------- /autotests/input/modelines.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/autotests/input/modelines.txt -------------------------------------------------------------------------------- /autotests/src/bugs_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/autotests/src/bugs_test.cpp -------------------------------------------------------------------------------- /autotests/src/bugs_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/autotests/src/bugs_test.h -------------------------------------------------------------------------------- /autotests/src/camelcursortest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/autotests/src/camelcursortest.h -------------------------------------------------------------------------------- /autotests/src/completion_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/autotests/src/completion_test.h -------------------------------------------------------------------------------- /autotests/src/encodingtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/autotests/src/encodingtest.cpp -------------------------------------------------------------------------------- /autotests/src/encodingtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/autotests/src/encodingtest.h -------------------------------------------------------------------------------- /autotests/src/example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/autotests/src/example.cpp -------------------------------------------------------------------------------- /autotests/src/indenttest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/autotests/src/indenttest.cpp -------------------------------------------------------------------------------- /autotests/src/indenttest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/autotests/src/indenttest.h -------------------------------------------------------------------------------- /autotests/src/inlinenote_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/autotests/src/inlinenote_test.h -------------------------------------------------------------------------------- /autotests/src/katefoldingtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/autotests/src/katefoldingtest.h -------------------------------------------------------------------------------- /autotests/src/kateview_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/autotests/src/kateview_test.cpp -------------------------------------------------------------------------------- /autotests/src/kateview_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/autotests/src/kateview_test.h -------------------------------------------------------------------------------- /autotests/src/messagetest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/autotests/src/messagetest.cpp -------------------------------------------------------------------------------- /autotests/src/messagetest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/autotests/src/messagetest.h -------------------------------------------------------------------------------- /autotests/src/multicursortest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/autotests/src/multicursortest.h -------------------------------------------------------------------------------- /autotests/src/range_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/autotests/src/range_test.cpp -------------------------------------------------------------------------------- /autotests/src/range_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/autotests/src/range_test.h -------------------------------------------------------------------------------- /autotests/src/revision_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/autotests/src/revision_test.cpp -------------------------------------------------------------------------------- /autotests/src/revision_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/autotests/src/revision_test.h -------------------------------------------------------------------------------- /autotests/src/searchbar_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/autotests/src/searchbar_test.h -------------------------------------------------------------------------------- /autotests/src/swapfiletest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/autotests/src/swapfiletest.cpp -------------------------------------------------------------------------------- /autotests/src/swapfiletest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/autotests/src/swapfiletest.h -------------------------------------------------------------------------------- /autotests/src/test.uc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/autotests/src/test.uc -------------------------------------------------------------------------------- /autotests/src/testutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/autotests/src/testutils.cpp -------------------------------------------------------------------------------- /autotests/src/testutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/autotests/src/testutils.h -------------------------------------------------------------------------------- /autotests/src/variable_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/autotests/src/variable_test.cpp -------------------------------------------------------------------------------- /autotests/src/variable_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/autotests/src/variable_test.h -------------------------------------------------------------------------------- /autotests/src/vimode/base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/autotests/src/vimode/base.cpp -------------------------------------------------------------------------------- /autotests/src/vimode/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/autotests/src/vimode/base.h -------------------------------------------------------------------------------- /autotests/src/vimode/hlsearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/autotests/src/vimode/hlsearch.h -------------------------------------------------------------------------------- /autotests/src/vimode/keys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/autotests/src/vimode/keys.cpp -------------------------------------------------------------------------------- /autotests/src/vimode/keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/autotests/src/vimode/keys.h -------------------------------------------------------------------------------- /autotests/src/vimode/modes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/autotests/src/vimode/modes.cpp -------------------------------------------------------------------------------- /autotests/src/vimode/modes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/autotests/src/vimode/modes.h -------------------------------------------------------------------------------- /autotests/src/vimode/view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/autotests/src/vimode/view.cpp -------------------------------------------------------------------------------- /autotests/src/vimode/view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/autotests/src/vimode/view.h -------------------------------------------------------------------------------- /cmake/FindEditorConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/cmake/FindEditorConfig.cmake -------------------------------------------------------------------------------- /config.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/config.h.cmake -------------------------------------------------------------------------------- /docs/apidocs-groups.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/docs/apidocs-groups.qdoc -------------------------------------------------------------------------------- /docs/coding-guidelines.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/docs/coding-guidelines.qdoc -------------------------------------------------------------------------------- /docs/design.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/docs/design.qdoc -------------------------------------------------------------------------------- /docs/pics/inlinenote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/docs/pics/inlinenote.png -------------------------------------------------------------------------------- /docs/pics/texthint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/docs/pics/texthint.png -------------------------------------------------------------------------------- /docs/plugin_hosting.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/docs/plugin_hosting.qdoc -------------------------------------------------------------------------------- /docs/porting.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/docs/porting.qdoc -------------------------------------------------------------------------------- /docs/porting_kf6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/docs/porting_kf6.md -------------------------------------------------------------------------------- /metainfo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/metainfo.yaml -------------------------------------------------------------------------------- /po/af/ktexteditor6.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/po/af/ktexteditor6.po -------------------------------------------------------------------------------- /po/ar/ktexteditor6.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/po/ar/ktexteditor6.po -------------------------------------------------------------------------------- /po/ast/ktexteditor6.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/po/ast/ktexteditor6.po -------------------------------------------------------------------------------- /po/az/ktexteditor6.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/po/az/ktexteditor6.po -------------------------------------------------------------------------------- /po/be/ktexteditor6.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/po/be/ktexteditor6.po -------------------------------------------------------------------------------- /po/bg/ktexteditor6.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/po/bg/ktexteditor6.po -------------------------------------------------------------------------------- /po/bn/ktexteditor6.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/po/bn/ktexteditor6.po -------------------------------------------------------------------------------- /po/br/ktexteditor6.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/po/br/ktexteditor6.po -------------------------------------------------------------------------------- /po/bs/ktexteditor6.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/po/bs/ktexteditor6.po -------------------------------------------------------------------------------- /po/ca/ktexteditor6.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/po/ca/ktexteditor6.po -------------------------------------------------------------------------------- /po/ca@valencia/ktexteditor6.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/po/ca@valencia/ktexteditor6.po -------------------------------------------------------------------------------- /po/cs/ktexteditor6.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/po/cs/ktexteditor6.po -------------------------------------------------------------------------------- /po/cy/ktexteditor6.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/po/cy/ktexteditor6.po -------------------------------------------------------------------------------- /po/da/ktexteditor6.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/po/da/ktexteditor6.po -------------------------------------------------------------------------------- /po/de/ktexteditor6.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/po/de/ktexteditor6.po -------------------------------------------------------------------------------- /po/el/ktexteditor6.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/po/el/ktexteditor6.po -------------------------------------------------------------------------------- /po/en_GB/ktexteditor6.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/po/en_GB/ktexteditor6.po -------------------------------------------------------------------------------- /po/eo/ktexteditor6.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/po/eo/ktexteditor6.po -------------------------------------------------------------------------------- /po/es/ktexteditor6.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/po/es/ktexteditor6.po -------------------------------------------------------------------------------- /po/et/ktexteditor6.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/po/et/ktexteditor6.po -------------------------------------------------------------------------------- /po/eu/ktexteditor6.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/po/eu/ktexteditor6.po -------------------------------------------------------------------------------- /po/fa/ktexteditor6.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/po/fa/ktexteditor6.po -------------------------------------------------------------------------------- /po/fi/ktexteditor6.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/po/fi/ktexteditor6.po -------------------------------------------------------------------------------- /po/fr/ktexteditor6.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/po/fr/ktexteditor6.po -------------------------------------------------------------------------------- /po/fy/ktexteditor6.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/po/fy/ktexteditor6.po -------------------------------------------------------------------------------- /po/ga/ktexteditor6.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/po/ga/ktexteditor6.po -------------------------------------------------------------------------------- /po/gl/ktexteditor6.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/po/gl/ktexteditor6.po -------------------------------------------------------------------------------- /po/gu/ktexteditor6.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/po/gu/ktexteditor6.po -------------------------------------------------------------------------------- /po/he/ktexteditor6.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/po/he/ktexteditor6.po -------------------------------------------------------------------------------- /po/hi/ktexteditor6.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/po/hi/ktexteditor6.po -------------------------------------------------------------------------------- /po/hr/ktexteditor6.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/po/hr/ktexteditor6.po -------------------------------------------------------------------------------- /po/hsb/ktexteditor6.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/po/hsb/ktexteditor6.po -------------------------------------------------------------------------------- /po/hu/ktexteditor6.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/po/hu/ktexteditor6.po -------------------------------------------------------------------------------- /po/ia/ktexteditor6.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/po/ia/ktexteditor6.po -------------------------------------------------------------------------------- /po/id/ktexteditor6.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/po/id/ktexteditor6.po -------------------------------------------------------------------------------- /po/is/ktexteditor6.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/po/is/ktexteditor6.po -------------------------------------------------------------------------------- /po/it/ktexteditor6.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/po/it/ktexteditor6.po -------------------------------------------------------------------------------- /po/ja/ktexteditor6.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/po/ja/ktexteditor6.po -------------------------------------------------------------------------------- /po/ka/ktexteditor6.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/po/ka/ktexteditor6.po -------------------------------------------------------------------------------- /po/kk/ktexteditor6.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/po/kk/ktexteditor6.po -------------------------------------------------------------------------------- /po/km/ktexteditor6.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/po/km/ktexteditor6.po -------------------------------------------------------------------------------- /po/ko/ktexteditor6.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/po/ko/ktexteditor6.po -------------------------------------------------------------------------------- /po/ku/ktexteditor6.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/po/ku/ktexteditor6.po -------------------------------------------------------------------------------- /po/lb/ktexteditor6.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/po/lb/ktexteditor6.po -------------------------------------------------------------------------------- /po/lt/ktexteditor6.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/po/lt/ktexteditor6.po -------------------------------------------------------------------------------- /po/lv/ktexteditor6.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/po/lv/ktexteditor6.po -------------------------------------------------------------------------------- /po/mai/ktexteditor6.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/po/mai/ktexteditor6.po -------------------------------------------------------------------------------- /po/mk/ktexteditor6.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/po/mk/ktexteditor6.po -------------------------------------------------------------------------------- /po/ml/ktexteditor6.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/po/ml/ktexteditor6.po -------------------------------------------------------------------------------- /po/mr/ktexteditor6.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/po/mr/ktexteditor6.po -------------------------------------------------------------------------------- /po/ms/ktexteditor6.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/po/ms/ktexteditor6.po -------------------------------------------------------------------------------- /po/nb/ktexteditor6.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/po/nb/ktexteditor6.po -------------------------------------------------------------------------------- /po/nds/ktexteditor6.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/po/nds/ktexteditor6.po -------------------------------------------------------------------------------- /po/ne/ktexteditor6.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/po/ne/ktexteditor6.po -------------------------------------------------------------------------------- /po/nl/ktexteditor6.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/po/nl/ktexteditor6.po -------------------------------------------------------------------------------- /po/nn/ktexteditor6.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/po/nn/ktexteditor6.po -------------------------------------------------------------------------------- /po/oc/ktexteditor6.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/po/oc/ktexteditor6.po -------------------------------------------------------------------------------- /po/pa/ktexteditor6.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/po/pa/ktexteditor6.po -------------------------------------------------------------------------------- /po/pl/ktexteditor6.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/po/pl/ktexteditor6.po -------------------------------------------------------------------------------- /po/pt/ktexteditor6.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/po/pt/ktexteditor6.po -------------------------------------------------------------------------------- /po/pt_BR/ktexteditor6.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/po/pt_BR/ktexteditor6.po -------------------------------------------------------------------------------- /po/ro/ktexteditor6.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/po/ro/ktexteditor6.po -------------------------------------------------------------------------------- /po/ru/ktexteditor6.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/po/ru/ktexteditor6.po -------------------------------------------------------------------------------- /po/sa/ktexteditor6.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/po/sa/ktexteditor6.po -------------------------------------------------------------------------------- /po/se/ktexteditor6.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/po/se/ktexteditor6.po -------------------------------------------------------------------------------- /po/si/ktexteditor6.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/po/si/ktexteditor6.po -------------------------------------------------------------------------------- /po/sk/ktexteditor6.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/po/sk/ktexteditor6.po -------------------------------------------------------------------------------- /po/sl/ktexteditor6.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/po/sl/ktexteditor6.po -------------------------------------------------------------------------------- /po/sq/ktexteditor6.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/po/sq/ktexteditor6.po -------------------------------------------------------------------------------- /po/sr/ktexteditor6.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/po/sr/ktexteditor6.po -------------------------------------------------------------------------------- /po/sr@ijekavian/ktexteditor6.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/po/sr@ijekavian/ktexteditor6.po -------------------------------------------------------------------------------- /po/sr@latin/ktexteditor6.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/po/sr@latin/ktexteditor6.po -------------------------------------------------------------------------------- /po/sv/ktexteditor6.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/po/sv/ktexteditor6.po -------------------------------------------------------------------------------- /po/ta/ktexteditor6.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/po/ta/ktexteditor6.po -------------------------------------------------------------------------------- /po/tg/ktexteditor6.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/po/tg/ktexteditor6.po -------------------------------------------------------------------------------- /po/th/ktexteditor6.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/po/th/ktexteditor6.po -------------------------------------------------------------------------------- /po/tr/ktexteditor6.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/po/tr/ktexteditor6.po -------------------------------------------------------------------------------- /po/ug/ktexteditor6.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/po/ug/ktexteditor6.po -------------------------------------------------------------------------------- /po/uk/ktexteditor6.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/po/uk/ktexteditor6.po -------------------------------------------------------------------------------- /po/uz/ktexteditor6.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/po/uz/ktexteditor6.po -------------------------------------------------------------------------------- /po/uz@cyrillic/ktexteditor6.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/po/uz@cyrillic/ktexteditor6.po -------------------------------------------------------------------------------- /po/vi/ktexteditor6.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/po/vi/ktexteditor6.po -------------------------------------------------------------------------------- /po/wa/ktexteditor6.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/po/wa/ktexteditor6.po -------------------------------------------------------------------------------- /po/xh/ktexteditor6.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/po/xh/ktexteditor6.po -------------------------------------------------------------------------------- /po/zh_CN/ktexteditor6.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/po/zh_CN/ktexteditor6.po -------------------------------------------------------------------------------- /po/zh_TW/ktexteditor6.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/po/zh_TW/ktexteditor6.po -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/Messages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/Messages.sh -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/README.md -------------------------------------------------------------------------------- /src/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/TODO -------------------------------------------------------------------------------- /src/buffer/katetextblock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/buffer/katetextblock.cpp -------------------------------------------------------------------------------- /src/buffer/katetextblock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/buffer/katetextblock.h -------------------------------------------------------------------------------- /src/buffer/katetextbuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/buffer/katetextbuffer.cpp -------------------------------------------------------------------------------- /src/buffer/katetextbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/buffer/katetextbuffer.h -------------------------------------------------------------------------------- /src/buffer/katetextcursor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/buffer/katetextcursor.cpp -------------------------------------------------------------------------------- /src/buffer/katetextcursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/buffer/katetextcursor.h -------------------------------------------------------------------------------- /src/buffer/katetextfolding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/buffer/katetextfolding.cpp -------------------------------------------------------------------------------- /src/buffer/katetextfolding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/buffer/katetextfolding.h -------------------------------------------------------------------------------- /src/buffer/katetexthistory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/buffer/katetexthistory.cpp -------------------------------------------------------------------------------- /src/buffer/katetexthistory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/buffer/katetexthistory.h -------------------------------------------------------------------------------- /src/buffer/katetextline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/buffer/katetextline.cpp -------------------------------------------------------------------------------- /src/buffer/katetextline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/buffer/katetextline.h -------------------------------------------------------------------------------- /src/buffer/katetextloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/buffer/katetextloader.h -------------------------------------------------------------------------------- /src/buffer/katetextrange.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/buffer/katetextrange.cpp -------------------------------------------------------------------------------- /src/buffer/katetextrange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/buffer/katetextrange.h -------------------------------------------------------------------------------- /src/data/kate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/data/kate.svg -------------------------------------------------------------------------------- /src/data/katemoderc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/data/katemoderc -------------------------------------------------------------------------------- /src/data/katepart5ui.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/data/katepart5ui.rc -------------------------------------------------------------------------------- /src/data/ktexteditor.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/data/ktexteditor.qrc -------------------------------------------------------------------------------- /src/dialogs/editconfigwidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/dialogs/editconfigwidget.ui -------------------------------------------------------------------------------- /src/dialogs/kateconfigpage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/dialogs/kateconfigpage.cpp -------------------------------------------------------------------------------- /src/dialogs/kateconfigpage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/dialogs/kateconfigpage.h -------------------------------------------------------------------------------- /src/dialogs/katedialogs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/dialogs/katedialogs.cpp -------------------------------------------------------------------------------- /src/dialogs/katedialogs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/dialogs/katedialogs.h -------------------------------------------------------------------------------- /src/document/editorconfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/document/editorconfig.cpp -------------------------------------------------------------------------------- /src/document/editorconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/document/editorconfig.h -------------------------------------------------------------------------------- /src/document/katebuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/document/katebuffer.cpp -------------------------------------------------------------------------------- /src/document/katebuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/document/katebuffer.h -------------------------------------------------------------------------------- /src/document/katedocument.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/document/katedocument.cpp -------------------------------------------------------------------------------- /src/document/katedocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/document/katedocument.h -------------------------------------------------------------------------------- /src/draft/foldinginterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/draft/foldinginterface.h -------------------------------------------------------------------------------- /src/export/abstractexporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/export/abstractexporter.h -------------------------------------------------------------------------------- /src/export/exporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/export/exporter.cpp -------------------------------------------------------------------------------- /src/export/exporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/export/exporter.h -------------------------------------------------------------------------------- /src/export/htmlexporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/export/htmlexporter.cpp -------------------------------------------------------------------------------- /src/export/htmlexporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/export/htmlexporter.h -------------------------------------------------------------------------------- /src/include/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/include/CMakeLists.txt -------------------------------------------------------------------------------- /src/include/ktexteditor/range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/include/ktexteditor/range.h -------------------------------------------------------------------------------- /src/include/ktexteditor/view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/include/ktexteditor/view.h -------------------------------------------------------------------------------- /src/inputmode/kateviinputmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/inputmode/kateviinputmode.h -------------------------------------------------------------------------------- /src/ktexteditor-index.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/ktexteditor-index.qdoc -------------------------------------------------------------------------------- /src/ktexteditor.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/ktexteditor.qdoc -------------------------------------------------------------------------------- /src/ktexteditor.qdocconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/ktexteditor.qdocconf -------------------------------------------------------------------------------- /src/mode/katemodeconfigpage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/mode/katemodeconfigpage.cpp -------------------------------------------------------------------------------- /src/mode/katemodeconfigpage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/mode/katemodeconfigpage.h -------------------------------------------------------------------------------- /src/mode/katemodemanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/mode/katemodemanager.cpp -------------------------------------------------------------------------------- /src/mode/katemodemanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/mode/katemodemanager.h -------------------------------------------------------------------------------- /src/mode/katemodemenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/mode/katemodemenu.cpp -------------------------------------------------------------------------------- /src/mode/katemodemenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/mode/katemodemenu.h -------------------------------------------------------------------------------- /src/mode/katemodemenulist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/mode/katemodemenulist.cpp -------------------------------------------------------------------------------- /src/mode/katemodemenulist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/mode/katemodemenulist.h -------------------------------------------------------------------------------- /src/part/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/part/CMakeLists.txt -------------------------------------------------------------------------------- /src/part/katepart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/part/katepart.cpp -------------------------------------------------------------------------------- /src/part/katepart.json.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/part/katepart.json.in -------------------------------------------------------------------------------- /src/printing/kateprinter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/printing/kateprinter.cpp -------------------------------------------------------------------------------- /src/printing/kateprinter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/printing/kateprinter.h -------------------------------------------------------------------------------- /src/printing/printpainter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/printing/printpainter.cpp -------------------------------------------------------------------------------- /src/printing/printpainter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/printing/printpainter.h -------------------------------------------------------------------------------- /src/render/katelayoutcache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/render/katelayoutcache.cpp -------------------------------------------------------------------------------- /src/render/katelayoutcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/render/katelayoutcache.h -------------------------------------------------------------------------------- /src/render/katelinelayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/render/katelinelayout.cpp -------------------------------------------------------------------------------- /src/render/katelinelayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/render/katelinelayout.h -------------------------------------------------------------------------------- /src/render/katerenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/render/katerenderer.cpp -------------------------------------------------------------------------------- /src/render/katerenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/render/katerenderer.h -------------------------------------------------------------------------------- /src/render/katerenderrange.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/render/katerenderrange.cpp -------------------------------------------------------------------------------- /src/render/katerenderrange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/render/katerenderrange.h -------------------------------------------------------------------------------- /src/render/katetextlayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/render/katetextlayout.cpp -------------------------------------------------------------------------------- /src/render/katetextlayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/render/katetextlayout.h -------------------------------------------------------------------------------- /src/script/data/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/script/data/CMakeLists.txt -------------------------------------------------------------------------------- /src/script/kateindentscript.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/script/kateindentscript.cpp -------------------------------------------------------------------------------- /src/script/kateindentscript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/script/kateindentscript.h -------------------------------------------------------------------------------- /src/script/katescript.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/script/katescript.cpp -------------------------------------------------------------------------------- /src/script/katescript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/script/katescript.h -------------------------------------------------------------------------------- /src/script/katescriptaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/script/katescriptaction.cpp -------------------------------------------------------------------------------- /src/script/katescriptaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/script/katescriptaction.h -------------------------------------------------------------------------------- /src/script/katescriptdocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/script/katescriptdocument.h -------------------------------------------------------------------------------- /src/script/katescripteditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/script/katescripteditor.cpp -------------------------------------------------------------------------------- /src/script/katescripteditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/script/katescripteditor.h -------------------------------------------------------------------------------- /src/script/katescripthelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/script/katescripthelpers.h -------------------------------------------------------------------------------- /src/script/katescriptmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/script/katescriptmanager.h -------------------------------------------------------------------------------- /src/script/katescriptview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/script/katescriptview.cpp -------------------------------------------------------------------------------- /src/script/katescriptview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/script/katescriptview.h -------------------------------------------------------------------------------- /src/script/scriptcursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/script/scriptcursor.h -------------------------------------------------------------------------------- /src/script/scriptrange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/script/scriptrange.h -------------------------------------------------------------------------------- /src/scripttester/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/scripttester/README.md -------------------------------------------------------------------------------- /src/search/katematch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/search/katematch.cpp -------------------------------------------------------------------------------- /src/search/katematch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/search/katematch.h -------------------------------------------------------------------------------- /src/search/kateregexpsearch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/search/kateregexpsearch.cpp -------------------------------------------------------------------------------- /src/search/kateregexpsearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/search/kateregexpsearch.h -------------------------------------------------------------------------------- /src/search/katesearchbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/search/katesearchbar.cpp -------------------------------------------------------------------------------- /src/search/katesearchbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/search/katesearchbar.h -------------------------------------------------------------------------------- /src/search/searchbarpower.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/search/searchbarpower.ui -------------------------------------------------------------------------------- /src/spellcheck/ontheflycheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/spellcheck/ontheflycheck.h -------------------------------------------------------------------------------- /src/spellcheck/prefixstore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/spellcheck/prefixstore.cpp -------------------------------------------------------------------------------- /src/spellcheck/prefixstore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/spellcheck/prefixstore.h -------------------------------------------------------------------------------- /src/spellcheck/spellcheck.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/spellcheck/spellcheck.cpp -------------------------------------------------------------------------------- /src/spellcheck/spellcheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/spellcheck/spellcheck.h -------------------------------------------------------------------------------- /src/spellcheck/spellcheckbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/spellcheck/spellcheckbar.h -------------------------------------------------------------------------------- /src/spellcheck/spellcheckbar.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/spellcheck/spellcheckbar.ui -------------------------------------------------------------------------------- /src/spellcheck/spellingmenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/spellcheck/spellingmenu.cpp -------------------------------------------------------------------------------- /src/spellcheck/spellingmenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/spellcheck/spellingmenu.h -------------------------------------------------------------------------------- /src/swapfile/kateswapfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/swapfile/kateswapfile.cpp -------------------------------------------------------------------------------- /src/swapfile/kateswapfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/swapfile/kateswapfile.h -------------------------------------------------------------------------------- /src/syntax/katecategorydrawer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/syntax/katecategorydrawer.h -------------------------------------------------------------------------------- /src/syntax/katehighlight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/syntax/katehighlight.cpp -------------------------------------------------------------------------------- /src/syntax/katehighlight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/syntax/katehighlight.h -------------------------------------------------------------------------------- /src/syntax/katehighlightmenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/syntax/katehighlightmenu.h -------------------------------------------------------------------------------- /src/syntax/katesyntaxmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/syntax/katesyntaxmanager.h -------------------------------------------------------------------------------- /src/syntax/katethemeconfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/syntax/katethemeconfig.cpp -------------------------------------------------------------------------------- /src/syntax/katethemeconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/syntax/katethemeconfig.h -------------------------------------------------------------------------------- /src/undo/kateundo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/undo/kateundo.cpp -------------------------------------------------------------------------------- /src/undo/kateundo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/undo/kateundo.h -------------------------------------------------------------------------------- /src/undo/kateundomanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/undo/kateundomanager.cpp -------------------------------------------------------------------------------- /src/undo/kateundomanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/undo/kateundomanager.h -------------------------------------------------------------------------------- /src/utils/application.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/utils/application.cpp -------------------------------------------------------------------------------- /src/utils/attribute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/utils/attribute.cpp -------------------------------------------------------------------------------- /src/utils/document.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/utils/document.cpp -------------------------------------------------------------------------------- /src/utils/documentcursor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/utils/documentcursor.cpp -------------------------------------------------------------------------------- /src/utils/kateautoindent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/utils/kateautoindent.cpp -------------------------------------------------------------------------------- /src/utils/kateautoindent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/utils/kateautoindent.h -------------------------------------------------------------------------------- /src/utils/katebookmarks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/utils/katebookmarks.cpp -------------------------------------------------------------------------------- /src/utils/katebookmarks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/utils/katebookmarks.h -------------------------------------------------------------------------------- /src/utils/katecmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/utils/katecmd.cpp -------------------------------------------------------------------------------- /src/utils/katecmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/utils/katecmd.h -------------------------------------------------------------------------------- /src/utils/katecmds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/utils/katecmds.cpp -------------------------------------------------------------------------------- /src/utils/katecmds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/utils/katecmds.h -------------------------------------------------------------------------------- /src/utils/kateconfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/utils/kateconfig.cpp -------------------------------------------------------------------------------- /src/utils/kateconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/utils/kateconfig.h -------------------------------------------------------------------------------- /src/utils/kateglobal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/utils/kateglobal.cpp -------------------------------------------------------------------------------- /src/utils/kateglobal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/utils/kateglobal.h -------------------------------------------------------------------------------- /src/utils/kateindentdetecter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/utils/kateindentdetecter.h -------------------------------------------------------------------------------- /src/utils/katesedcmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/utils/katesedcmd.cpp -------------------------------------------------------------------------------- /src/utils/katesedcmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/utils/katesedcmd.h -------------------------------------------------------------------------------- /src/utils/katetemplatehandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/utils/katetemplatehandler.h -------------------------------------------------------------------------------- /src/utils/ktexteditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/utils/ktexteditor.cpp -------------------------------------------------------------------------------- /src/utils/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/utils/mainwindow.cpp -------------------------------------------------------------------------------- /src/utils/messageinterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/utils/messageinterface.cpp -------------------------------------------------------------------------------- /src/utils/movingapi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/utils/movingapi.cpp -------------------------------------------------------------------------------- /src/utils/range.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/utils/range.cpp -------------------------------------------------------------------------------- /src/utils/variable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/utils/variable.cpp -------------------------------------------------------------------------------- /src/utils/variable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/utils/variable.h -------------------------------------------------------------------------------- /src/view/inlinenotedata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/view/inlinenotedata.h -------------------------------------------------------------------------------- /src/view/kateanimation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/view/kateanimation.cpp -------------------------------------------------------------------------------- /src/view/kateanimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/view/kateanimation.h -------------------------------------------------------------------------------- /src/view/katefadeeffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/view/katefadeeffect.cpp -------------------------------------------------------------------------------- /src/view/katefadeeffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/view/katefadeeffect.h -------------------------------------------------------------------------------- /src/view/katemessagewidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/view/katemessagewidget.cpp -------------------------------------------------------------------------------- /src/view/katemessagewidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/view/katemessagewidget.h -------------------------------------------------------------------------------- /src/view/katestatusbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/view/katestatusbar.cpp -------------------------------------------------------------------------------- /src/view/katestatusbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/view/katestatusbar.h -------------------------------------------------------------------------------- /src/view/katetextanimation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/view/katetextanimation.cpp -------------------------------------------------------------------------------- /src/view/katetextanimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/view/katetextanimation.h -------------------------------------------------------------------------------- /src/view/katetextpreview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/view/katetextpreview.cpp -------------------------------------------------------------------------------- /src/view/katetextpreview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/view/katetextpreview.h -------------------------------------------------------------------------------- /src/view/kateview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/view/kateview.cpp -------------------------------------------------------------------------------- /src/view/kateview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/view/kateview.h -------------------------------------------------------------------------------- /src/view/kateviewaccessible.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/view/kateviewaccessible.h -------------------------------------------------------------------------------- /src/view/kateviewhelpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/view/kateviewhelpers.cpp -------------------------------------------------------------------------------- /src/view/kateviewhelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/view/kateviewhelpers.h -------------------------------------------------------------------------------- /src/view/kateviewinternal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/view/kateviewinternal.cpp -------------------------------------------------------------------------------- /src/view/kateviewinternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/view/kateviewinternal.h -------------------------------------------------------------------------------- /src/view/screenshotdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/view/screenshotdialog.cpp -------------------------------------------------------------------------------- /src/view/screenshotdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/view/screenshotdialog.h -------------------------------------------------------------------------------- /src/view/wordcounter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/view/wordcounter.cpp -------------------------------------------------------------------------------- /src/view/wordcounter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/view/wordcounter.h -------------------------------------------------------------------------------- /src/vimode/appcommands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/vimode/appcommands.cpp -------------------------------------------------------------------------------- /src/vimode/appcommands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/vimode/appcommands.h -------------------------------------------------------------------------------- /src/vimode/cmds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/vimode/cmds.cpp -------------------------------------------------------------------------------- /src/vimode/cmds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/vimode/cmds.h -------------------------------------------------------------------------------- /src/vimode/command.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/vimode/command.cpp -------------------------------------------------------------------------------- /src/vimode/command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/vimode/command.h -------------------------------------------------------------------------------- /src/vimode/completion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/vimode/completion.cpp -------------------------------------------------------------------------------- /src/vimode/completion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/vimode/completion.h -------------------------------------------------------------------------------- /src/vimode/completionrecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/vimode/completionrecorder.h -------------------------------------------------------------------------------- /src/vimode/completionreplayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/vimode/completionreplayer.h -------------------------------------------------------------------------------- /src/vimode/definitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/vimode/definitions.h -------------------------------------------------------------------------------- /src/vimode/globalstate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/vimode/globalstate.cpp -------------------------------------------------------------------------------- /src/vimode/globalstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/vimode/globalstate.h -------------------------------------------------------------------------------- /src/vimode/history.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/vimode/history.cpp -------------------------------------------------------------------------------- /src/vimode/history.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/vimode/history.h -------------------------------------------------------------------------------- /src/vimode/jumps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/vimode/jumps.cpp -------------------------------------------------------------------------------- /src/vimode/jumps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/vimode/jumps.h -------------------------------------------------------------------------------- /src/vimode/keyevent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/vimode/keyevent.cpp -------------------------------------------------------------------------------- /src/vimode/keyevent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/vimode/keyevent.h -------------------------------------------------------------------------------- /src/vimode/keymapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/vimode/keymapper.cpp -------------------------------------------------------------------------------- /src/vimode/keymapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/vimode/keymapper.h -------------------------------------------------------------------------------- /src/vimode/keyparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/vimode/keyparser.cpp -------------------------------------------------------------------------------- /src/vimode/keyparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/vimode/keyparser.h -------------------------------------------------------------------------------- /src/vimode/macrorecorder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/vimode/macrorecorder.cpp -------------------------------------------------------------------------------- /src/vimode/macrorecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/vimode/macrorecorder.h -------------------------------------------------------------------------------- /src/vimode/macros.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/vimode/macros.cpp -------------------------------------------------------------------------------- /src/vimode/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/vimode/macros.h -------------------------------------------------------------------------------- /src/vimode/mappings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/vimode/mappings.cpp -------------------------------------------------------------------------------- /src/vimode/mappings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/vimode/mappings.h -------------------------------------------------------------------------------- /src/vimode/marks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/vimode/marks.cpp -------------------------------------------------------------------------------- /src/vimode/marks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/vimode/marks.h -------------------------------------------------------------------------------- /src/vimode/modes/modebase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/vimode/modes/modebase.h -------------------------------------------------------------------------------- /src/vimode/motion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/vimode/motion.cpp -------------------------------------------------------------------------------- /src/vimode/motion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/vimode/motion.h -------------------------------------------------------------------------------- /src/vimode/range.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/vimode/range.cpp -------------------------------------------------------------------------------- /src/vimode/range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/vimode/range.h -------------------------------------------------------------------------------- /src/vimode/registers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/vimode/registers.cpp -------------------------------------------------------------------------------- /src/vimode/registers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/vimode/registers.h -------------------------------------------------------------------------------- /src/vimode/searcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/vimode/searcher.cpp -------------------------------------------------------------------------------- /src/vimode/searcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/src/vimode/searcher.h -------------------------------------------------------------------------------- /templates/.clang-format: -------------------------------------------------------------------------------- 1 | DisableFormat: true 2 | SortIncludes: false 3 | -------------------------------------------------------------------------------- /templates/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ktexteditor/HEAD/templates/CMakeLists.txt --------------------------------------------------------------------------------