This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <ion-navbar *navbar> | |
| <ion-title> | |
| Home | |
| </ion-title> | |
| </ion-navbar> | |
| <ion-content class="home"> | |
| <ion-list> | |
| <ion-item> | |
| <ion-label>Hello</ion-label> | |
| <ion-input type="number" pattern="[0-9]*"></ion-input> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import 'es6-shim'; | |
| import {App, IonicApp, Platform, Menu} from 'ionic-angular'; | |
| import {StatusBar} from 'ionic-native'; | |
| import {ViewChild} from 'angular2/core'; | |
| import {GettingStartedPage} from './pages/getting-started/getting-started'; | |
| import {ListPage} from './pages/list/list'; | |
| @App({ | |
| template: ` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import 'es6-shim'; | |
| import {App, IonicApp, Platform, Menu} from 'ionic-angular'; | |
| import {StatusBar} from 'ionic-native'; | |
| import {ViewChild} from 'angular2/core'; | |
| import {GettingStartedPage} from './pages/getting-started/getting-started'; | |
| import {ListPage} from './pages/list/list'; | |
| @App({ | |
| template: ` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import 'es6-shim'; | |
| import {App, IonicApp, Platform, Menu} from 'ionic-angular'; | |
| import {StatusBar} from 'ionic-native'; | |
| import {ViewChild} from 'angular2/core'; | |
| import {GettingStartedPage} from './pages/getting-started/getting-started'; | |
| import {ListPage} from './pages/list/list'; | |
| @App({ | |
| template: ` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| " Git from unite...ERMERGERD ------------------------------------------------{{{ | |
| let g:unite_source_menu_menus = {} " Useful when building interfaces at appropriate places | |
| let g:unite_source_menu_menus.git = { | |
| \ 'description' : 'Fugitive interface', | |
| \} | |
| let g:unite_source_menu_menus.git.command_candidates = [ | |
| \[' git status', 'Gstatus'], | |
| \[' git diff', 'Gvdiff'], | |
| \[' git commit', 'Gcommit'], | |
| \[' git stage/add', 'Gwrite'], |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function! vim_typings#install(...) | |
| let type_file_list = map(range(1, a:{0}), 'a:{v:val}') | |
| let stdouts = systemlist('typings install '.join(type_file_list, ' ').' --save') | |
| if len(stdouts) | |
| if stdouts =~ 'typings ERR!' | |
| let stdouts = systemlist('typings install '.join(type_file_list, ' ').' --ambient --save') | |
| endif | |
| echom join(stdouts, ', ') | |
| endif | |
| endfunction |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <ion-view> | |
| <ion-content class="main-content"> | |
| <h4>Something</h4> | |
| <h4>Something</h4> | |
| <h4>Something</h4> | |
| <h4>Something</h4> | |
| <h4>Something</h4> | |
| <h4>Something</h4> | |
| <h4>Something</h4> | |
| <h4>Something</h4> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import deoplete.util | |
| import deoplete.logger | |
| import logging | |
| from subprocess import Popen, PIPE | |
| import json | |
| from .base import Base | |
| class Source(Base): | |
| def __init__(self, vim): | |
| Base.__init__(self, vim) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import os | |
| import re | |
| import json | |
| import subprocess | |
| from tempfile import NamedTemporaryFile | |
| from deoplete.sources.base import Base | |
| MAX_COMPLETION_DETAIL = 100 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var gulp = require('gulp'); | |
| var concat = require('gulp-concat'); | |
| var sass = require('gulp-sass'); | |
| var minifyCss = require('gulp-minify-css'); | |
| var rename = require('gulp-rename'); | |
| var runSequence = require('run-sequence'); | |
| var paths = { | |
| sass: ['./scss/**/*.scss'] | |
| }; |