Skip to content

Instantly share code, notes, and snippets.

View kcliu's full-sized avatar

kcliu kcliu

View GitHub Profile
{
"binary_file_patterns":
[
"*.psd"
],
"close_windows_when_empty": false,
"color_scheme": "Packages/Tomorrow Color Schemes/Tomorrow-Night.tmTheme",
"detect_indentation": false,
"disable_formatted_linebreak": true,
"drag_text": false,
@pkozlowski-opensource
pkozlowski-opensource / gist:4998969
Last active November 12, 2018 06:33
AngularJS Typeahead interface design

Examples

Simple, static array

 $scope.states = ['Alabama', 'California', 'Delaware', ...] 

would be used as:

<input ng-model='state' typeahead='states | filter:$viewValue'>