mirror of
https://github.com/vale981/tridactyl
synced 2025-03-05 09:31:41 -05:00
completions: passthrough # in buffercompletion
Fix @gsbabil's complaint in #189.
This commit is contained in:
parent
cdf53966c0
commit
c2c5d2b5ef
1 changed files with 4 additions and 1 deletions
|
@ -541,7 +541,10 @@ class BufferCompletionOption extends CompletionOptionHTML implements CompletionO
|
|||
// Two character buffer properties prefix
|
||||
let pre = ""
|
||||
if (tab.active) pre += "%"
|
||||
else if (isAlternative) pre += "#"
|
||||
else if (isAlternative) {
|
||||
pre += "#"
|
||||
this.value = "#"
|
||||
}
|
||||
if (tab.pinned) pre += "@"
|
||||
|
||||
// Push prefix before padding so we don't match on whitespace
|
||||
|
|
Loading…
Add table
Reference in a new issue