소스 검색

Merge pull request #815 from Morganamilo/fix#812

Fix each iota not starting at 0
Anna 6 년 전
부모
커밋
91cf1e27a1
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. 4 0
      config.go

+ 4 - 0
config.go

@@ -18,11 +18,15 @@ const (
 	numberMenu = iota
 	detailed
 	minimal
+)
 
+const (
 	// Describes Sorting method for numberdisplay
 	bottomUp = iota
 	topDown
+)
 
+const (
 	modeAUR targetMode = iota
 	modeRepo
 	modeAny