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