mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-06-10 06:39:01 +02:00
Merge pull request #4085 from overleaf/ae-symbol-palette-words
Improve symbol matching for multi-word input GitOrigin-RevId: a12ff1e1ccc38acab8be47fd2f5bcdca2c6c6859
This commit is contained in:
+10
-4
@@ -32,10 +32,16 @@ export default function SymbolPaletteContent({ handleSelect }) {
|
||||
return null
|
||||
}
|
||||
|
||||
return matchSorter(symbols, input, {
|
||||
keys: ['command', 'description'],
|
||||
threshold: matchSorter.rankings.CONTAINS,
|
||||
})
|
||||
const words = input.trim().split(/\W+/)
|
||||
|
||||
return words.reduceRight(
|
||||
(symbols, word) =>
|
||||
matchSorter(symbols, word, {
|
||||
keys: ['command', 'description'],
|
||||
threshold: matchSorter.rankings.CONTAINS,
|
||||
}),
|
||||
symbols
|
||||
)
|
||||
}, [input])
|
||||
|
||||
const inputRef = useRef(null)
|
||||
|
||||
Reference in New Issue
Block a user