Skip to content

fh-combo/ColorPicker

This branch is 10 commits behind weslly/ColorPicker:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

371f601 · Jun 7, 2015

History

96 Commits
Jun 7, 2015
Oct 11, 2011
Mar 7, 2015
Feb 26, 2014
Mar 8, 2015
Oct 11, 2011
Jan 27, 2012
Jan 27, 2012
Aug 30, 2014
Mar 7, 2015
Mar 19, 2015

Repository files navigation

###Mac OSX Mac OSX

###Linux Linux

###Windows Windows

Installation

Install this repository via Package Control.

Usage

To insert or change a selected color, use:

  • Linux: ctrl+shift+c
  • Windows: ctrl+shift+c
  • OS X: cmd+shift+c

By default, the hex color code is inserted using uppercase letters. To use lowercase letters instead, copy the contents of Preferences -> Package Settings -> ColorPicker -> Settings-Default to the empty file created by selecting Preferences -> Package Settings -> ColorPicker -> Settings-User, then change "color_upper_case" to false.

Calling from Other Plugins

To commands are provided to assist in calling a color picker from other plugins. Info is shared between the plugins via a settings file. It does not have to exist on disk; it can exist only in memory for the sole purpose of sharing the return. It is advised to use a unique name for the settings file. The data is returned in the settings key color_pick_return. It is advised to set color_pick_return to None in your settings file before calling any of the commands. So you can tell if it set teh variable or not.

ColorPickApiIsAvailableCommand

This command is used to test if ColorPicker is installed.

>> settings = sublime.load_settings('my_shared.sublime-settings')
>> settings.set('color_pick_return', None)
>> sublime.run_command('color_pick_api_is_available', {'settings': 'my_shared.sublime-settings'})
>> print(settings.get('color_pick_return'))
True

ColorPickApiGetColorCommand

This command is used to call a color picker and get the selected value. It takes a setings file and an optional default_color.

>> settings = sublime.load_settings('my_shared.sublime-settings')
>> settings.set('color_pick_return', None)
>> sublime.run_command('color_pick_api_get_color', {'settings': 'my_shared.sublime-settings', 'default_color': '#ff0000'})
>> print(settings.get('color_pick_return'))
#23af44

Acknowledgements

About

Color picker for Sublime Text

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 89.2%
  • JavaScript 10.8%