├── VERSION
├── settings.gradle
├── travis.enc
├── website
└── images
│ ├── dnd.gif
│ ├── edit.gif
│ ├── sort.png
│ ├── dndxml.gif
│ ├── filter.png
│ ├── normal.png
│ ├── search.png
│ ├── no_filter.png
│ ├── no_sort.png
│ ├── right_click.png
│ └── search_color_code.png
├── .idea
├── copyright
│ └── profiles_settings.xml
├── encodings.xml
├── vcs.xml
├── kotlinc.xml
├── gradle.xml
├── modules.xml
├── modules
│ ├── color-manager.iml
│ ├── color-manager_main.iml
│ └── color-manager_test.iml
├── runConfigurations
│ ├── Android_Color_Manager__buildPlugin_.xml
│ └── Android_Color_Manager__runIdea_.xml
├── compiler.xml
├── misc.xml
└── uiDesigner.xml
├── gradle
└── wrapper
│ ├── gradle-wrapper.jar
│ └── gradle-wrapper.properties
├── .gitignore
├── src
└── main
│ ├── kotlin
│ └── com
│ │ └── github
│ │ └── shiraji
│ │ └── colormanager
│ │ ├── view
│ │ ├── ColorManagerToolWindowCell.java
│ │ ├── ColorManagerToolWindow.kt
│ │ ├── ColorManagerToolWindowCell.form
│ │ └── ColorManagerToolWindowPanel.kt
│ │ └── data
│ │ ├── ColorManagerCell.kt
│ │ └── ColorManagerColorTag.kt
│ └── resources
│ └── META-INF
│ └── plugin.xml
├── .travis
├── before_install.sh
└── after_success.sh
├── RELEASING.md
├── .travis.yml
├── CHANGELOG.md
├── gradlew.bat
├── README.md
├── gradlew
└── LICENSE
/VERSION:
--------------------------------------------------------------------------------
1 | 1.1.7-SNAPSHOT
2 |
--------------------------------------------------------------------------------
/settings.gradle:
--------------------------------------------------------------------------------
1 | rootProject.name = 'color-manager'
2 |
3 |
--------------------------------------------------------------------------------
/travis.enc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiraji/color-manager/HEAD/travis.enc
--------------------------------------------------------------------------------
/website/images/dnd.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiraji/color-manager/HEAD/website/images/dnd.gif
--------------------------------------------------------------------------------
/website/images/edit.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiraji/color-manager/HEAD/website/images/edit.gif
--------------------------------------------------------------------------------
/website/images/sort.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiraji/color-manager/HEAD/website/images/sort.png
--------------------------------------------------------------------------------
/website/images/dndxml.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiraji/color-manager/HEAD/website/images/dndxml.gif
--------------------------------------------------------------------------------
/website/images/filter.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiraji/color-manager/HEAD/website/images/filter.png
--------------------------------------------------------------------------------
/website/images/normal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiraji/color-manager/HEAD/website/images/normal.png
--------------------------------------------------------------------------------
/website/images/search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiraji/color-manager/HEAD/website/images/search.png
--------------------------------------------------------------------------------
/website/images/no_filter.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiraji/color-manager/HEAD/website/images/no_filter.png
--------------------------------------------------------------------------------
/website/images/no_sort.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiraji/color-manager/HEAD/website/images/no_sort.png
--------------------------------------------------------------------------------
/website/images/right_click.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiraji/color-manager/HEAD/website/images/right_click.png
--------------------------------------------------------------------------------
/.idea/copyright/profiles_settings.xml:
--------------------------------------------------------------------------------
1 |
Open "Color Manager" tool window. You will see all colors listed
10 |
From v1.1.0, this plugin support drag and drop feature.
13 |If the selected file is not xml file, then the drop text format is R.color.color_name

If the selected file is xml, then the drop text format is @color/color_name

At this moment, there is no way to detect drop target file's type. So, if you select a xml file and drop text to a Java file, this plugin pastes @color/color_name not R.color.color_name
Right click a color listed on the tool window
25 |
Click "Copy R.color.whatever_color_name" or "Copy @color/whatever_color_name"
27 |You can also copy color name ("R.color.whatever_color_name" style) by cmd+c (or ctrl+c) after selecting the color panel
28 |Same as Copy. Right click and click "Go to R.color.whatever_color_name"
30 |Or just double click an item
31 |Click "Edit R.color.whatever_color_name" and choose new color
33 |
Same as Copy and move. Right click and click "Delete R.color.whatever_color_name"
36 |It will show confirmation dialog before deleting the color tag.
37 |Just start typing after focusing tool window
39 |
As default, this plugin filter library's color because there are a lot.
42 |
You can un-filter those by clicking "Filter" icon (It takes a few second to show all colors)
44 |
You can sort by color name by clicking sort icon
47 |

Older version changes are listed on CHANGELOG.md
58 | ]]> 59 |