mirror of
https://github.com/hexedtech/codemp-sublime.git
synced 2024-12-23 05:04:52 +01:00
30 lines
683 B
Python
30 lines
683 B
Python
|
BUFFCTL_TASK_PREFIX = "buffer-ctl"
|
||
|
CURCTL_TASK_PREFIX = "cursor-ctl"
|
||
|
WORKSPACE_FOLDER_PREFIX = "CODEMP::"
|
||
|
SUBLIME_REGIONS_PREFIX = "codemp-cursors"
|
||
|
CODEMP_BUFFER_VIEW_TAG = "codemp-buffer"
|
||
|
SUBLIME_STATUS_ID = "z_codemp_buffer"
|
||
|
CODEMP_IGNORE_NEXT_TEXT_CHANGE = "codemp-skip-change-event"
|
||
|
|
||
|
PALETTE = [
|
||
|
"var(--redish)",
|
||
|
"var(--orangish)",
|
||
|
"var(--yellowish)",
|
||
|
"var(--greenish)",
|
||
|
"var(--cyanish)",
|
||
|
"var(--bluish)",
|
||
|
"var(--purplish)",
|
||
|
"var(--pinkish)",
|
||
|
]
|
||
|
|
||
|
REGIONS_COLORS = [
|
||
|
"region.redish",
|
||
|
"region.orangeish",
|
||
|
"region.yellowish",
|
||
|
"region.greenish",
|
||
|
"region.cyanish",
|
||
|
"region.bluish",
|
||
|
"region.purplish",
|
||
|
"region.pinkish",
|
||
|
]
|