mirror of
https://github.com/vale981/tridactyl
synced 2025-03-05 09:31:41 -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) {
|
constructor(private _parent) {
|
||||||
super(
|
super(
|
||||||
["tab", "tabclose", "tabdetach", "tabduplicate", "tabmove"],
|
config.get("completions","Tab","excmds").split(" "),
|
||||||
"BufferCompletionSource",
|
"BufferCompletionSource",
|
||||||
"Tabs",
|
"Tabs",
|
||||||
)
|
)
|
||||||
|
|
|
@ -1005,6 +1005,7 @@ export class default_config {
|
||||||
* Whether to automatically select the closest matching completion
|
* Whether to automatically select the closest matching completion
|
||||||
*/
|
*/
|
||||||
autoselect: "true",
|
autoselect: "true",
|
||||||
|
excmds: "tab tabclose tabdetach tabduplicate tabmove",
|
||||||
},
|
},
|
||||||
Rss: {
|
Rss: {
|
||||||
autoselect: "true",
|
autoselect: "true",
|
||||||
|
|
Loading…
Add table
Reference in a new issue