From d550e960440767bf96f0af0b71450be672f2d3e4 Mon Sep 17 00:00:00 2001 From: Tai Groot Date: Wed, 28 Sep 2022 19:28:24 -0700 Subject: [PATCH] move palettes to subpackage --- .gitignore | 2 +- {ansi => palettes/ansi}/ansi.go | 0 {hexcolor => palettes/hexcolor}/curated.go | 0 {hexcolor => palettes/hexcolor}/popular.go | 0 {html => palettes/html}/html.go | 0 {material => palettes/material}/material.go | 0 {vim => palettes/vim}/luna/luna.go | 0 {vim => palettes/vim}/wombat/wombat.go | 0 8 files changed, 1 insertion(+), 1 deletion(-) rename {ansi => palettes/ansi}/ansi.go (100%) rename {hexcolor => palettes/hexcolor}/curated.go (100%) rename {hexcolor => palettes/hexcolor}/popular.go (100%) rename {html => palettes/html}/html.go (100%) rename {material => palettes/material}/material.go (100%) rename {vim => palettes/vim}/luna/luna.go (100%) rename {vim => palettes/vim}/wombat/wombat.go (100%) diff --git a/.gitignore b/.gitignore index d5ff6b9..62b13e7 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,3 @@ go-colorpalettes -palettes/ +vimpalettes/ palettes.zip diff --git a/ansi/ansi.go b/palettes/ansi/ansi.go similarity index 100% rename from ansi/ansi.go rename to palettes/ansi/ansi.go diff --git a/hexcolor/curated.go b/palettes/hexcolor/curated.go similarity index 100% rename from hexcolor/curated.go rename to palettes/hexcolor/curated.go diff --git a/hexcolor/popular.go b/palettes/hexcolor/popular.go similarity index 100% rename from hexcolor/popular.go rename to palettes/hexcolor/popular.go diff --git a/html/html.go b/palettes/html/html.go similarity index 100% rename from html/html.go rename to palettes/html/html.go diff --git a/material/material.go b/palettes/material/material.go similarity index 100% rename from material/material.go rename to palettes/material/material.go diff --git a/vim/luna/luna.go b/palettes/vim/luna/luna.go similarity index 100% rename from vim/luna/luna.go rename to palettes/vim/luna/luna.go diff --git a/vim/wombat/wombat.go b/palettes/vim/wombat/wombat.go similarity index 100% rename from vim/wombat/wombat.go rename to palettes/vim/wombat/wombat.go