Fall back to HTML and plaintext autocompletion if markdown is disabled. Fixes #190
This commit is contained in:
parent
0e1b69e4ed
commit
a800072893
@ -598,6 +598,12 @@ func findWordToTabComplete(text string) string {
|
|||||||
return output
|
return output
|
||||||
}
|
}
|
||||||
|
|
||||||
|
var (
|
||||||
|
mentionMarkdown = "[%[1]s](https://matrix.to/#/%[2]s)"
|
||||||
|
mentionHTML = `<a href="https://matrix.to/#/%[2]s">%[1]s</a>`
|
||||||
|
mentionPlaintext = "%[1]s"
|
||||||
|
)
|
||||||
|
|
||||||
func (view *RoomView) defaultAutocomplete(word string, startIndex int) (strCompletions []string, strCompletion string) {
|
func (view *RoomView) defaultAutocomplete(word string, startIndex int) (strCompletions []string, strCompletion string) {
|
||||||
if len(word) == 0 {
|
if len(word) == 0 {
|
||||||
return []string{}, ""
|
return []string{}, ""
|
||||||
@ -608,7 +614,15 @@ func (view *RoomView) defaultAutocomplete(word string, startIndex int) (strCompl
|
|||||||
|
|
||||||
if len(completions) == 1 {
|
if len(completions) == 1 {
|
||||||
completion := completions[0]
|
completion := completions[0]
|
||||||
strCompletion = fmt.Sprintf("[%s](https://matrix.to/#/%s)", completion.displayName, completion.id)
|
template := mentionMarkdown
|
||||||
|
if view.config.Preferences.DisableMarkdown {
|
||||||
|
if view.config.Preferences.DisableHTML {
|
||||||
|
template = mentionPlaintext
|
||||||
|
} else {
|
||||||
|
template = mentionHTML
|
||||||
|
}
|
||||||
|
}
|
||||||
|
strCompletion = fmt.Sprintf(template, completion.displayName, completion.id)
|
||||||
if startIndex == 0 && completion.id[0] == '@' {
|
if startIndex == 0 && completion.id[0] == '@' {
|
||||||
strCompletion = strCompletion + ":"
|
strCompletion = strCompletion + ":"
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user