Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,8 @@ Current-Project.sublime-completions
._*
.Spotlight-V100
.Trashes
*.swp
*.swp

*.bak

completion/
34 changes: 17 additions & 17 deletions SublimErl.sublime-settings
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
{
/*
* SublimErl tries to detect automatically the paths for erl, escript, rebar and dialyzer.
* If it doesn't succeed or you prefer to manually configure these, you can do so by inputting the paths here.
*
* "erl_path": "/usr/local/bin/erl",
* "escript_path": "/usr/local/bin/escript",
* "rebar_path": "/usr/local/bin/rebar",
* "dialyzer_path": "/usr/local/bin/dialyzer"
*/
/*
* SublimErl tries to detect automatically the paths for erl, escript, rebar and dialyzer.
* If it doesn't succeed or you prefer to manually configure these, you can do so by inputting the paths here.
*
* "erl_path": "/usr/local/bin/erl",
* "escript_path": "/usr/local/bin/escript",
* "rebar_path": "/usr/local/bin/rebar",
* "dialyzer_path": "/usr/local/bin/dialyzer"
*/

// Skip Erlang libs that match the regex
"completion_skip_erlang_libs": [
"^[cC]os[A-Z].+",
".*orber.*",
"^oe_.+",
"^megaco_.+",
".*wx.*"
]
// Skip Erlang libs that match the regex
"completion_skip_erlang_libs": [
"^[cC]os[A-Z].+",
".*orber.*",
"^oe_.+",
"^megaco_.+",
".*wx.*"
]
}
24 changes: 13 additions & 11 deletions bindings/Context.sublime-menu
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
[
{ "caption": "-" },
{
"caption": "SublimErl",
"children":
[
{ "caption": "Run Contextual Test", "command": "sublim_erl_test" },
{ "caption": "Run Dialyzer", "command": "sublim_erl_dialyzer" },
{ "caption": "Run Last Run test", "command": "sublim_erl_redo" },
{ "caption": "View CT results", "command": "sublim_erl_ct_results" }
]
}
{ "caption": "-" },
{
"caption": "SublimErl",
"children":
[
{ "caption": "Run Contextual Test", "command": "sublim_erl_test" },
{ "caption": "Run Dialyzer", "command": "sublim_erl_dialyzer" },
{ "caption": "Run Last Run test", "command": "sublim_erl_redo" },
{ "caption": "View CT results", "command": "sublim_erl_ct_results" },
{ "caption": "Format code", "command": "sublim_erl_auto_format"},
{ "caption": "Function search", "command": "sublim_erl_function_search"}
]
}
]
14 changes: 7 additions & 7 deletions bindings/Default (Linux).sublime-keymap
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[
{ "keys": ["ctrl+shift+f8"], "command": "sublim_erl_test", "context": [{ "key": "selector", "operator": "equal", "operand": "source.erlang" }] },
{ "keys": ["ctrl+shift+f9"], "command": "sublim_erl_dialyzer", "context": [{ "key": "selector", "operator": "equal", "operand": "source.erlang" }] },
{ "keys": ["ctrl+f8"], "command": "sublim_erl_redo" },
{ "keys": ["ctrl+alt+f8"], "command": "sublim_erl_ct_results" },
{ "keys": ["ctrl+alt+l"], "command": "sublim_erl_auto_format", "context": [{ "key": "selector", "operator": "equal", "operand": "source.erlang" }] },
{ "keys": ["ctrl+alt+p"], "command": "sublim_erl_function_search", "context": [{ "key": "selector", "operator": "equal", "operand": "source.erlang" }] },
{ "keys": ["ctrl+alt+i"], "command": "sublim_erl_man", "context": [{ "key": "selector", "operator": "equal", "operand": "source.erlang" }] }
{ "keys": ["ctrl+shift+f8"], "command": "sublim_erl_test", "context": [{ "key": "selector", "operator": "equal", "operand": "source.erlang" }] },
{ "keys": ["ctrl+shift+f9"], "command": "sublim_erl_dialyzer", "context": [{ "key": "selector", "operator": "equal", "operand": "source.erlang" }] },
{ "keys": ["ctrl+f8"], "command": "sublim_erl_redo" },
{ "keys": ["ctrl+alt+f8"], "command": "sublim_erl_ct_results" },
{ "keys": ["ctrl+alt+l"], "command": "sublim_erl_auto_format", "context": [{ "key": "selector", "operator": "equal", "operand": "source.erlang" }] },
{ "keys": ["ctrl+alt+p"], "command": "sublim_erl_function_search", "context": [{ "key": "selector", "operator": "equal", "operand": "source.erlang" }] },
{ "keys": ["ctrl+alt+i"], "command": "sublim_erl_man", "context": [{ "key": "selector", "operator": "equal", "operand": "source.erlang" }] }
]
14 changes: 7 additions & 7 deletions bindings/Default (OSX).sublime-keymap
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[
{ "keys": ["super+shift+f8"], "command": "sublim_erl_test", "context": [{ "key": "selector", "operator": "equal", "operand": "source.erlang" }] },
{ "keys": ["super+shift+f9"], "command": "sublim_erl_dialyzer", "context": [{ "key": "selector", "operator": "equal", "operand": "source.erlang" }] },
{ "keys": ["super+f8"], "command": "sublim_erl_redo" },
{ "keys": ["super+alt+f8"], "command": "sublim_erl_ct_results" },
{ "keys": ["super+alt+l"], "command": "sublim_erl_auto_format", "context": [{ "key": "selector", "operator": "equal", "operand": "source.erlang" }] },
{ "keys": ["super+alt+p"], "command": "sublim_erl_function_search", "context": [{ "key": "selector", "operator": "equal", "operand": "source.erlang" }] },
{ "keys": ["super+alt+i"], "command": "sublim_erl_man", "context": [{ "key": "selector", "operator": "equal", "operand": "source.erlang" }] }
{ "keys": ["super+shift+f8"], "command": "sublim_erl_test", "context": [{ "key": "selector", "operator": "equal", "operand": "source.erlang" }] },
{ "keys": ["super+shift+f9"], "command": "sublim_erl_dialyzer", "context": [{ "key": "selector", "operator": "equal", "operand": "source.erlang" }] },
{ "keys": ["super+f8"], "command": "sublim_erl_redo" },
{ "keys": ["super+alt+f8"], "command": "sublim_erl_ct_results" },
{ "keys": ["super+alt+l"], "command": "sublim_erl_auto_format", "context": [{ "key": "selector", "operator": "equal", "operand": "source.erlang" }] },
{ "keys": ["super+alt+p"], "command": "sublim_erl_function_search", "context": [{ "key": "selector", "operator": "equal", "operand": "source.erlang" }] },
{ "keys": ["super+alt+i"], "command": "sublim_erl_man", "context": [{ "key": "selector", "operator": "equal", "operand": "source.erlang" }] }
]
114 changes: 0 additions & 114 deletions completion/Erlang-Libs.dirinfo

This file was deleted.

Loading