Skip to content

pBouillon/Sublime_text_snippets

Repository files navigation

Sublime text snippets

Content

HTML

HTML core

From html + [tab]

<!DOCTYPE html>
<html lang="en">

    <head>
        <!-- styles -->
        <link rel="stylesheet" href="CSS_FILE_PATH.css">
        <!-- minimal configuration -->
        <link rel="icon" href="ICON_PATH/ICON_URL">
        <meta charset="utf-8">
        <meta name="description" content="DESCRIPTION" />
        <title>${1:title}</title>
        <!-- open graph -->
            <!-- Informations -->
        <meta property="og:description" content="OPEN_GRAPH_DESCRIPTION" />
        <meta property="og:title" content="OPEN_GRAPH_TITLE" />
        <meta property="og:type"  content="website" />
        <meta property="og:url"   content="WEBSITE_URL" />
            <!-- Image -->
        <meta property="og:image" content="URL_TO_IMAGE" />
        <meta property="og:image:alt"    content="Website icon" />
        <meta property="og:image:height" content="80" />
        <meta property="og:image:secure_url" content="URL_TO_IMAGE" />
        <meta property="og:image:type"  content="image/png" />
        <meta property="og:image:width" content="80" />
        <meta property="og:locale" content="en_GB" />
    </head>

    <body>
        <!-- JS file -->
        <script src="JS_FILE_PATH.js"></script>
    </body>
</html>

SQL

create

From create + [tab]

/* ${1:table_name} */
create table if not exists `${1:table_name}` (
    `${1:table_name}_id`       int not null auto_increment,
    `xxx`        varchar (400)   not null,
    `yyy`         blob,
    `zzz`          varchar (30)    not null,

    constraint `PK_${1:table_name}` primary key (`${1:table_name}_id`)
) ENGINE = InnoDB ;

Javascript

ajax

From ajax + [tab]

var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
    if (this.readyState == 4 && this.status == 200) {
        console.log(this.responseText) ;
    }
};
xhttp.open("GET", "target", true);
xhttp.send();

logger

From log + [tab]

console.log("this");

Vue.js

template

From template + [tab]

<template lang="html">

</template>

<script>
export default {
}
</script>

<style lang="css">
</style>

Python 3

Python 3 core

From p3 + [tab]

# !/usr/bin/env python3
# -*- coding: utf-8 -*-

def main() :
    pass

if __name__ == '__main__':
    main()

Contributions

Feel free to contribute !

About

Sublime text snippets, making your life easier !

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published