Answer the question
In order to leave comments, you need to log in
Color picker not working in sublime text 3, how to solve this problem?
Installed sublime text 3 portable, then installed a few plugins and it works fine, but the color picker doesn't want to work. When I press ctrl+shift+c nothing happens, even if I call the plugin via the control package. Without this plugin, life does not make sense, it's a pity that there is no analogue. Does anyone know how to solve this problem.
Answer the question
In order to leave comments, you need to log in
If it's actually decided so! I did everything that is described above, it didn’t work (I went to the folder sublime-text-3/Packages/ColorPicker opened the file Default (Linux). sublime-keymap changed the picker call not ctrl shift c but ctrl shift w . Everything worked)
I will add (or rather change ) vladverbiy's answer : You need to go to Preferences - Browse Packages - a list of folders with installed plugins opens. Select the ColorPicker folder and go to the file Default (Windows). sublime-keymap (this is in my case because I have Windows. There are 2 more files specifically for Macs and Linux). You can go through Sublime itself. And in the file we change the default keyboard shortcut to our own. I put, for example, like this:
[
{ "keys": ["shift+alt+c"], "command": "color_pick"
}
]
If you do this combination:
changed picker call not ctrl shift c but ctrl shift wthen, perhaps, there will be an overlay. the combination "ctrl+shift+w" is responsible for closing the active window.
This is fucked up comrades!
After all the steps you suggested, nothing worked for me, but then on the page that AlexTikhonov pointed out , I did this
just edit ~/.config/sublime-text-3/Packages/ColorPicker/lib/linux_colorpicker.py,
search this line
if color_sel.run() == getattr(Gtk, 'RESPONSE_OK', Gtk.ResponseType.OK):
change to
if color_sel.run() == getattr(Gtk, 'RESPONSE_OK', Gtk.ResponseType):
and save. hope it's help
Enter
.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question