Considering this code, how to make chapter title continue smoothly under the word CHAPTER 1: spanning the whole \textwidth?
\RequirePackage{luatex85}
\documentclass[chapterprefix=off]{scrbook}
\renewcommand*{\chapterformat}{CHAPTER~\thechapter:\enskip}
\renewcommand*\raggedchapter{\centering}
\begin{document}
\chapter{Some long long long long long long long long long long long title}
\end{document}


\renewcommand{\chapterlinesformat}[3]{#2#3}? since I couldn't understand it from the manual. – Diaa Nov 29 '16 at 17:44