forked from bollu/sublimeBookmark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCommands.sublime-commands
39 lines (35 loc) · 992 Bytes
/
Commands.sublime-commands
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
[
//Add a bookmark
{
"caption": "Bookmarks: Add Bookmark",
"command": "sublime_bookmark",
"args" : { "type" : "add" }
},
//Goto a specific bookmark
{
"caption": "Bookmarks: Goto Bookmark",
"command": "sublime_bookmark",
"args" : { "type" : "goto" }
},
//Remove a single bookmark
{
"caption": "Bookmarks: Remove A Bookmark",
"command": "sublime_bookmark",
"args" : { "type" : "remove" }
},
{
"caption": "Bookmarks: Remove All Bookmarks (Clear Bookmarks)",
"command": "sublime_bookmark",
"args" : { "type" : "remove_all" }
},
{
"caption": "Bookmarks: Show All Bookmarks ",
"command": "sublime_bookmark",
"args" : { "type" : "show_all_bookmarks" }
},
{
"caption": "Bookmarks: Show Only Project Bookmarks ",
"command": "sublime_bookmark",
"args" : { "type" : "show_project_bookmarks" }
},
]