This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"echasnovski/mini.pairs", | |
enabled = true, | |
event = { "VeryLazy" }, | |
version = "*", | |
opts = { | |
-- In which modes mappings from this `config` should be created | |
modes = { insert = true, command = false, terminal = false }, | |
-- Global mappings. Each right hand side should be a pair information, a |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#compdef dasht | |
_main() { | |
local commands | |
commands=(`dasht-docsets 2>/dev/null`) | |
if (( CURRENT >= 3 )); then | |
_describe -t commands 'commands' commands | |
fi |