Skip to content
This repository was archived by the owner on May 25, 2019. It is now read-only.

Commit c39ed6d

Browse files
committed
Updates readme for js completions
1 parent a3e4ba3 commit c39ed6d

File tree

2 files changed

+32
-26
lines changed

2 files changed

+32
-26
lines changed

‎AngularJS-sublime-package.sublime-settings

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"disable_default_directive_completions": false,
1414
// turns off default element completions
1515
"disable_default_element_completions": false,
16-
// for future usage
16+
// turns off the js completions
1717
"disable_default_js_completions": false,
1818

1919
// flag to add the `data-` prefix to the completions

‎README.md

+31-25
Original file line numberDiff line numberDiff line change
@@ -98,31 +98,35 @@ The regex that's used for look up expects the definitions to start like one of t
9898
angular.module('myApp', [])
9999
```
100100
101-
Tab Triggers
102-
---
103-
104-
#### Javascript
105-
* __is + [# to select]__ isArray, isObject, isDefined, isFunction, isString
106-
* __lower__ lowercase
107-
* __upper__ uppercase
108-
* __mod + dir__ new module or directive template
109-
* __noop__
110-
* __extend__
111-
* __each__ forEach
112-
* __http__
113-
* __watch__
114-
* __digest__
115-
* __el__ element
116-
* __.$ + [# to select]__ $scope.$digest, $scope.$apply, $scope.$watch, $scope.$eval
117-
* __http__ $http()
118-
* __noop__
119-
* __filter__ $filter
120-
* __copy__
121-
* __mod__ angular.module(). // Includes a preceeding docblock
122-
* __dir__ directive()
123-
* __route__ $routeProvider.when
124-
* __toJson__ angular.toJson()
125-
* __log__ $log.log()
101+
#### Javascript Completions
102+
* angular.copy
103+
* angular.element
104+
* angular.equals
105+
* angular.extend
106+
* angular.forEach
107+
* angular.is[Array|Object|Defined|Function|String]
108+
* angular.lowercase
109+
* angular.noop
110+
* angular.toJson
111+
* angular.uppercase
112+
* $apply
113+
* $broadcast
114+
* $destroy
115+
* $digest
116+
* $emit
117+
* $eval
118+
* $evalAsync
119+
* $filter
120+
* $http
121+
* $log.log
122+
* $new
123+
* $on
124+
* $parent
125+
* $root
126+
* $routeProvider.when
127+
* $watch
128+
* directive
129+
* module // Includes a preceeding docblock
126130
127131
___
128132
@@ -175,6 +179,8 @@ Preferences > Package Settings > AngularJS > **Settings - User**
175179
176180
**disable_default_element_completions**: false;
177181
182+
**disable_default_js_completions**: false;
183+
178184
**enable_data_prefix**: bool (false); *adds the 'data-' prefix to attribute completions*
179185
180186
___

0 commit comments

Comments
 (0)