Our .editorconfig indiscriminately applies max length of 120 to every single file (except yaml).
When coupled with this setting (autowrap), this results in the editor inserting line ends in files,
even when it breaks the syntax (such as bash scripts) or tools (such as strings.xml).
This change keeps the margin indicator but disables auto-wrap while typing.
Signed-off-by: Álvaro Brey Vilas <alvaro.brey@nextcloud.com>
From https://developer.android.com/kotlin/style-guide
When a function signature does not fit on a single line, break each
parameter declaration onto its own line.Parameters defined in this
format should use a single indent (+4). The closing parenthesis ())
and return type are placed on their own line with no additional
indent.
fun <T> Iterable<T>.joinToString(
separator: CharSequence = ", ",
prefix: CharSequence = "",
postfix: CharSequence = ""
): String {
// …
}
Signed-off-by: Chris Narkiewicz <hello@ezaquarii.com>
Fixing migration to androidx
Dark theme styling
File details fragment tab text colour
File list overflow menu background colour
Signed-off-by: Daniel Bailey <daniel.bailey@grappleIT.co.uk>
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>