@NotNull
private TextRange findFileNameTextRagne() {
TextRange lastComponentTextRange = calcLastComponentTextRange(myYamlKeyValueFragment.getText());
TextRange oldPathRange = myYamlKeyValueFragment.getTextRangeInElement();
return oldPathRange.cutOut(lastComponentTextRange);
}
@NotNull
private static TextRange calcLastComponentTextRange(@NotNull String path) {
final int i1 = path.lastIndexOf(JstdConfigFileUtils.UNIX_PATH_SEPARATOR);