mirror of
https://github.com/vale981/tridactyl
synced 2025-03-04 17:11:40 -05:00
Allow users to specify which commands get Tab completions
This commit is contained in:
parent
b3d7700388
commit
809eb1ffda
2 changed files with 2 additions and 1 deletions
|
@ -68,7 +68,7 @@ export class BufferCompletionSource extends Completions.CompletionSourceFuse {
|
|||
|
||||
constructor(private _parent) {
|
||||
super(
|
||||
["tab", "tabclose", "tabdetach", "tabduplicate", "tabmove"],
|
||||
config.get("completions","Tab","excmds").split(" "),
|
||||
"BufferCompletionSource",
|
||||
"Tabs",
|
||||
)
|
||||
|
|
|
@ -1005,6 +1005,7 @@ export class default_config {
|
|||
* Whether to automatically select the closest matching completion
|
||||
*/
|
||||
autoselect: "true",
|
||||
excmds: "tab tabclose tabdetach tabduplicate tabmove",
|
||||
},
|
||||
Rss: {
|
||||
autoselect: "true",
|
||||
|
|
Loading…
Add table
Reference in a new issue