-
Notifications
You must be signed in to change notification settings - Fork 29
/
common.py
76 lines (48 loc) · 1.66 KB
/
common.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
import sublime
import os.path
# if someone names their project this, we're boned
NO_PROJECT = "___NO_PROJECT_PRESENT____"
REGION_BASE_TAG = int(11001001000011111101)
SETTINGS_NAME = "SublimeBookmarks.sublime-settings"
VERSION = "2.0.0"
def Log(string):
if True:
print(string)
def getViewByBufferID(window, bufferID):
for view in window.views():
if view.buffer_id() == int(bufferID):
return view
else:
continue
Log("NO VIEW. BUFFER ID: " + str(bufferID))
return None
def getCurrentLineRegion(view):
assert (len(view.sel()) > 0)
selectedRegion = view.sel()[0]
region = view.line(selectedRegion)
return region
def getCurrentProjectPath(window):
projectPath = window.project_file_name()
if projectPath is None or projectPath is "":
projectPath = NO_PROJECT
return projectPath
# [HACK] I think?
def getCurrentActiveGroup(window):
# (viewGroup, viewIndex) = window.get_view_index(view)
return 0 # viewGroup
def isLineEmpty(line):
return len(line.strip()) == 0
def isViewTemporary(view):
return (view is None) or (view.file_name() is None)
def getSavePath():
# bookmark that represents the
# file from which the panel was activated
currentDir = os.path.dirname(sublime.packages_path())
return currentDir + '/sublimeBookmarks.pickle'
# MESSAGES
def MESSAGE_NoBookmarkToGoto():
sublime.status_message("SublimeBookmarks: NO ACCEPTABLE BOOKMARKS TO GOTO."
"CHECK CURRENT MODE")
def MESSAGE_BookmarkEmpty():
sublime.status_message("SublimeBookmarks: BOOKMARK EMPTY."
"NOT CREATING BOOKMARK")