Commit Graph
2 Commits
Author SHA1 Message Date
Mumumu 0bd94fb993 Fix nftables completion: when object name contains its type name, the completion may mass up
E.g.
```
table inet foo {
        chain my_chain {
                jump my_chain2
        }
        chain my_chain2 {
        }
}
```

`nft delete chain inet foo <tab>`
get
```
handle                          -- address chain by handle
my_chain2                       -- (handle 31)
my_chain                        -- (handle 30)
\t\tjump my_chain2 # handle 33
```
the last line in the completion output is not wanted.
2024-06-25 21:34:06 +08:00
Mumumu 6621b9fa2f Update nftables completion
add completion for set/map name in `nft add/delete element [family] table <tab>`
2024-06-25 20:13:44 +08:00