コード例 #1
0
ファイル: version.go プロジェクト: sunflowergirl/jump
func init() {
	cli.RegisterCommand("--version", "Show version.", versionCmd)
}
コード例 #2
0
ファイル: top.go プロジェクト: svetliomihailov/jump
func init() {
	cli.RegisterCommand("top", "List the directories as they are scored.", topCmd)
}
コード例 #3
0
ファイル: cd.go プロジェクト: sunflowergirl/jump
func init() {
	cli.RegisterCommand("cd", "Fuzzy match a directory to jump to.", cdCmd)
}
コード例 #4
0
ファイル: shell.go プロジェクト: svetliomihailov/jump
func init() {
	cli.RegisterCommand("shell", "Display a shell integration script.", shellCmd)
}
コード例 #5
0
ファイル: chdir.go プロジェクト: svetliomihailov/jump
func init() {
	cli.RegisterCommand("chdir", "Update the scrore of directory during chdir.", updateCmd)
}
コード例 #6
0
ファイル: help.go プロジェクト: svetliomihailov/jump
func init() {
	cli.RegisterCommand("--help", "Show this screen.", helpCmd)
}
コード例 #7
0
ファイル: hint.go プロジェクト: NJichev/jump
func init() {
	cli.RegisterCommand("hint", "Hints relevant paths for jumping.", hintCmd)
}