mirror of
https://github.com/hexedtech/codemp-sublime.git
synced 2024-11-22 23:04:49 +01:00
c203524ced
Former-commit-id: 96208df478a2b9534668331d6a25118778822f9b
37 lines
816 B
Python
37 lines
816 B
Python
BUFFCTL_TASK_PREFIX = "buffer-ctl"
|
|
CURCTL_TASK_PREFIX = "cursor-ctl"
|
|
|
|
CODEMP_VIEW_TAG = "codemp-buffer"
|
|
CODEMP_BUFFER_ID = "codemp-buffer-id"
|
|
CODEMP_WORKSPACE_ID = "codemp-workspace-id"
|
|
|
|
WORKSPACE_FOLDER_PREFIX = "CODEMP::"
|
|
SUBLIME_REGIONS_PREFIX = "codemp-cursors"
|
|
SUBLIME_STATUS_ID = "z_codemp_buffer"
|
|
|
|
CODEMP_IGNORE_NEXT_TEXT_CHANGE = "codemp-skip-change-event"
|
|
|
|
ACTIVE_CODEMP_VIEW = None
|
|
ACTIVE_CODEMP_WINDOW = None
|
|
|
|
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",
|
|
]
|