We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cba112e commit 68c88ccCopy full SHA for 68c88cc
settings/sublime/Symbol List.tmPreferences
@@ -15,7 +15,7 @@
15
# transform into 'class Classname' form
16
s/(class)\s+([[:alpha:]_]\w*)\s*.*/$1 $2/g;
17
18
- # transform into '[async] funciton_name(args,...)' form
+ # transform into '[async] funciton_name(args,...)' long form
19
s/(?x)
20
def \s+
21
([[:alpha:]_]\w*) \s* \(
@@ -24,6 +24,13 @@
24
25
# remove extra whitespace in arg list (except leading)
26
s/(\S)\s{2,}/$1 /g;
27
+
28
+ # transform into short form
29
+ s/(?x)
30
+ (class\s|async\s)? (\w+\()
31
+ (.{80})(.+)
32
+ (\))$
33
+ /$1$2$3\.\.\.$5/g;
34
</string>
35
</dict>
36
<key>uuid</key>
0 commit comments