This file contains hidden or 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 chunkc | |
# Note for plugin authors: | |
# You can make your own zsh completions, and include these by calling `_chunkc' | |
# in the top-level function of the new completions and defining your subcommand | |
# with syntax: _chunkc_<plugin>_<subcmd> like so: | |
# Fake chunkc plugin | |
# | |
# function _chunkc_plugin_set { return } |
This file contains hidden or 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
package main | |
import "fmt" | |
import "bufio" | |
import "sort" | |
import "os" | |
import "strings" | |
import "strconv" |
NewerOlder