Skip to content

Commit

Permalink
first commit RSBIDE
Browse files Browse the repository at this point in the history
  • Loading branch information
mom1 committed Sep 9, 2015
0 parents commit 36aa1cd
Show file tree
Hide file tree
Showing 44 changed files with 2,208 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Default (Windows).sublime-mousemap
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
[
{
"button": "button1",
"count": 1,
"modifiers": ["ctrl"],
"press_command": "drag_select",
"command": "go_to_definition"
}
]
7 changes: 7 additions & 0 deletions Default.sublime-keymap
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[
{
"keys": ["alt+g"],
"command": "go_to_definition",
"args": {}
}
]
6 changes: 6 additions & 0 deletions DllRegister RS-Balance 3.sublime-commands
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[
{
"caption": "rsb: Reg",
"command": "rsb_reg"
}
]
6 changes: 6 additions & 0 deletions Go To Definition.sublime-commands
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[
{
"caption": "Go To Definition",
"command": "go_to_definition"
}
]
42 changes: 42 additions & 0 deletions HighlightSyntax/Comments (R-Style).tmPreferences
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>name</key>
<string>Comments</string>
<key>scope</key>
<string>source.mac</string>
<key>settings</key>
<dict>
<key>shellVariables</key>
<array>
<dict>
<key>name</key>
<string>TM_COMMENT_START</string>
<key>value</key>
<string>// </string>
</dict>
<dict>
<key>name</key>
<string>TM_COMMENT_START_2</string>
<key>value</key>
<string>/*</string>
</dict>
<dict>
<key>name</key>
<string>TM_COMMENT_END_2</string>
<key>value</key>
<string>*/</string>
</dict>
<dict>
<key>name</key>
<string>TM_COMMENT_DISABLE_INDENT_2</string>
<key>value</key>
<string>yes</string>
</dict>
</array>
</dict>
<key>uuid</key>
<string>38DBCCE5-2005-410C-B7D7-013097751AC9</string>
</dict>
</plist>
30 changes: 30 additions & 0 deletions HighlightSyntax/DebugClient.sublime-build
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"selector": "source.mac",
"cmd": ["RSInit.exe", "-client", "-rsldebug"],
"shell": true,
"working_dir": "$folder",
"variants":
[
{
"name": "Server console",
"windows":
{
"cmd": ["start", "RPCserv.exe", "-c", "-cfg", "RPCServ.exe.rsconfig"]
}
},
{
"name": "Client NO rsldebug",
"windows":
{
"cmd": ["RSInit.exe", "-client"]
}
},
{
"name": "Mac with rsldebug",
"windows":
{
"cmd": ["RSInit.exe", "$file_name", "-rsldebug"]
}
}
]
}
Loading

0 comments on commit 36aa1cd

Please sign in to comment.