Skip to content
This repository has been archived by the owner on Nov 29, 2019. It is now read-only.

Improve Symbol detection #26

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions Function Symbols.tmPreferences
Expand Up @@ -11,11 +11,11 @@
<key>showInSymbolList</key> <key>showInSymbolList</key>
<integer>1</integer> <integer>1</integer>
<key>symbolTransformation</key> <key>symbolTransformation</key>
<string>s/^/Function: /</string> <string>s/^//</string>
<key>showInIndexedSymbolList</key> <key>showInIndexedSymbolList</key>
<integer>1</integer> <integer>1</integer>
<key>symbolIndexTransformation</key> <key>symbolIndexTransformation</key>
<string>s/^/Function: /</string> <string>s/^//</string>
</dict> </dict>
</dict> </dict>
</plist> </plist>
17 changes: 17 additions & 0 deletions Hide Wrongly Detected Function Definitions.tmPreferences
@@ -0,0 +1,17 @@
<?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>Function Symbols</string>
<key>scope</key>
<string>meta.function.erlang, meta.function.module.erlang</string>
<key>settings</key>
<dict>
<key>showInSymbolList</key>
<integer>0</integer>
<key>showInIndexedSymbolList</key>
<integer>0</integer>
</dict>
</dict>
</plist>
4 changes: 2 additions & 2 deletions Macro Symbols.tmPreferences
Expand Up @@ -11,11 +11,11 @@
<key>showInSymbolList</key> <key>showInSymbolList</key>
<integer>1</integer> <integer>1</integer>
<key>symbolTransformation</key> <key>symbolTransformation</key>
<string>s/^/Macro: /</string> <string>s/^/?/</string>
<key>showInIndexedSymbolList</key> <key>showInIndexedSymbolList</key>
<integer>1</integer> <integer>1</integer>
<key>symbolIndexTransformation</key> <key>symbolIndexTransformation</key>
<string>s/^/Macro: /</string> <string>s/^/?/</string>
</dict> </dict>
</dict> </dict>
</plist> </plist>
4 changes: 2 additions & 2 deletions Record Symbols.tmPreferences
Expand Up @@ -11,11 +11,11 @@
<key>showInSymbolList</key> <key>showInSymbolList</key>
<integer>1</integer> <integer>1</integer>
<key>symbolTransformation</key> <key>symbolTransformation</key>
<string>s/^/Record: /</string> <string>s/^/-record /</string>
<key>showInIndexedSymbolList</key> <key>showInIndexedSymbolList</key>
<string>1</string> <string>1</string>
<key>symbolIndexTransformation</key> <key>symbolIndexTransformation</key>
<string>s/^/Record: /</string> <string>s/^/-record /</string>
</dict> </dict>
</dict> </dict>
</plist> </plist>
4 changes: 2 additions & 2 deletions Type Symbols.tmPreferences
Expand Up @@ -11,11 +11,11 @@
<key>showInSymbolList</key> <key>showInSymbolList</key>
<integer>1</integer> <integer>1</integer>
<key>symbolTransformation</key> <key>symbolTransformation</key>
<string>s/^/Type: /</string> <string>s/^/-type /;s/$/\(\)/</string>
<key>showInIndexedSymbolList</key> <key>showInIndexedSymbolList</key>
<integer>1</integer> <integer>1</integer>
<key>symbolIndexTransformation</key> <key>symbolIndexTransformation</key>
<string>s/^/Type: /</string> <string>s/^/-type /;s/$/\(\)/</string>
</dict> </dict>
</dict> </dict>
</plist> </plist>