readme: mention hosted docs
This commit is contained in:
parent
b675b3676c
commit
1e647cee51
|
@ -7,8 +7,8 @@ Hosts: [outfoxxed's gitea], [github]
|
|||
[outfoxxed's gitea]: https://git.outfoxxed.me/outfoxxed/quickshell
|
||||
[github]: https://github.com/outfoxxed/quickshell
|
||||
|
||||
Documentation can be built from the [quickshell-docs](https://git.outfoxxed.me/outfoxxed/quickshell-docs) repo,
|
||||
though is currently pretty lacking.
|
||||
Documentation available at [quickshell.outfoxxed.me](https://quickshell.outfoxxed.me) or
|
||||
can be built from the [quickshell-docs](https://git.outfoxxed.me/outfoxxed/quickshell-docs) repo.
|
||||
|
||||
Some fully working examples can be found in the [quickshell-examples](https://git.outfoxxed.me/outfoxxed/quickshell-examples)
|
||||
repo.
|
||||
|
|
|
@ -19,25 +19,25 @@ void TestSplitParser::splits_data() { // NOLINT
|
|||
|
||||
// NOLINTBEGIN
|
||||
// clang-format off
|
||||
QTest::addRow("simple") << "-"
|
||||
<< "foo" << "-"
|
||||
<< QList<QString>("foo") << "";
|
||||
QTest::addRow("simple") << "-"
|
||||
<< "foo" << "-"
|
||||
<< QList<QString>("foo") << "";
|
||||
|
||||
QTest::addRow("multiple") << "-"
|
||||
<< "foo" << "-bar-baz-"
|
||||
<< QList<QString>({ "foo", "bar", "baz" }) << "";
|
||||
QTest::addRow("multiple") << "-"
|
||||
<< "foo" << "-bar-baz-"
|
||||
<< QList<QString>({ "foo", "bar", "baz" }) << "";
|
||||
|
||||
QTest::addRow("incomplete") << "-"
|
||||
<< "foo" << "-bar-baz"
|
||||
<< QList<QString>({ "foo", "bar" }) << "baz";
|
||||
QTest::addRow("incomplete") << "-"
|
||||
<< "foo" << "-bar-baz"
|
||||
<< QList<QString>({ "foo", "bar" }) << "baz";
|
||||
|
||||
QTest::addRow("longsplit") << "12345"
|
||||
<< "foo1234" << "5bar12345"
|
||||
<< QList<QString>({ "foo", "bar" }) << "";
|
||||
QTest::addRow("longsplit") << "12345"
|
||||
<< "foo1234" << "5bar12345"
|
||||
<< QList<QString>({ "foo", "bar" }) << "";
|
||||
|
||||
QTest::addRow("longsplit-incomplete") << "123"
|
||||
<< "foo12" << "3bar123baz"
|
||||
<< QList<QString>({ "foo", "bar" }) << "baz";
|
||||
QTest::addRow("longsplit-incomplete") << "123"
|
||||
<< "foo12" << "3bar123baz"
|
||||
<< QList<QString>({ "foo", "bar" }) << "baz";
|
||||
// clang-format on
|
||||
// NOLINTEND
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue