ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

Esuna Framework Snippets

by Idered ALL

Snippets for Esuna Framework

Labels snippets

Details

  • 2013.03.27.02.24.04
  • github.​com
  • github.​com
  • 11 years ago
  • 5 minutes ago
  • 11 years ago

Installs

  • Total 247
  • Win 157
  • Mac 53
  • Linux 37
Apr 29 Apr 28 Apr 27 Apr 26 Apr 25 Apr 24 Apr 23 Apr 22 Apr 21 Apr 20 Apr 19 Apr 18 Apr 17 Apr 16 Apr 15 Apr 14 Apr 13 Apr 12 Apr 11 Apr 10 Apr 9 Apr 8 Apr 7 Apr 6 Apr 5 Apr 4 Apr 3 Apr 2 Apr 1 Mar 31 Mar 30 Mar 29 Mar 28 Mar 27 Mar 26 Mar 25 Mar 24 Mar 23 Mar 22 Mar 21 Mar 20 Mar 19 Mar 18 Mar 17 Mar 16
Windows 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Mac 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Linux 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

Readme

Source
raw.​githubusercontent.​com

esuna-snippets

Sublime Text snippets for Esuna Framework

Instalation

Using Package Control

This method is curently not available but soon, it'll be.

Manual instalation

Download this repo. In Sublime Text go to: Preferences->Browse Packages… Create there new folder called Esuna Framework Snippets and paste downloaded archive content.

Snippets

esuna-comment1

/** $1 */
/*---------------------------------------------------------------------------*/

$2

esuna-comment2

/** ${1:%|=}${2:[$3]} $4 */
/*------------------------------------*/
$5

esuna-comment3

/*------------------------------------*/

$1

esuna-open-graph

<meta name="og:title" content="$1" />
<meta name="og:type" content="${2:website}" />
<meta name="og:description" content="$3" />
<meta name="og:url" content="$4">

esuna-twitter-card

<meta name="twitter:card" content="${1:summary}">
<meta name="twitter:creator" content="@$2">
<meta name="twitter:site" content="@$3">
<meta name="twitter:url" content="$4">
<meta name="twitter:title" content="$5">
<meta name="twitter:description" content="$6">

esuna-dns-prefetch

<link rel="dns-prefetch" href="//p.twitter.com">
<link rel="dns-prefetch" href="//cdn.api.twitter.com">
<link rel="dns-prefetch" href="//ajax.googleapis.com">
<link rel="dns-prefetch" href="//fonts.googleapis.com">
<link rel="dns-prefetch" href="//connect.facebook.net">
<link rel="dns-prefetch" href="//platform.twitter.com">

esuna-load-scripts

<div id="fb-root"></div>
<script>
    var scripts = {
        'facebook-jssdk': '//connect.facebook.net/en_US/all.js#xfbml=1',
        'googleplus'    : 'https://apis.google.com/js/plusone.js',
        'twitter-wjs'   : '//platform.twitter.com/widgets.js',
        'analytics'     : ('https:'==location.protocol?'//ssl':'//www') + '.google-analytics.com/ga.js'
    }, script, _gaq=[['_setAccount','UA-XXXXX-X'],['_trackPageview']];

    for (var id in scripts) {
        script = document.createElement('script'); script.src = scripts[id];
        script.id = id;script.type = 'text/javascript'; script.async = true;
        document.getElementsByTagName('head')[0].appendChild(script);
    }
</script>