[
    // swap the keybindings for paste and paste_and_indent
    { "keys": ["super+v"], "command": "paste_and_indent" },
    { "keys": ["super+shift+v"], "command": "paste" },
    {
        "keys": ["super+w"], "command": "align_tab",
        "args" : {"live_preview" : true}
    },
    // Go to top the current class namespace
    { "keys": ["f1"], "command": "find_use" },
    // Expand the current class namespace
    { "keys": ["f2"], "command": "expand_fqcn" },
    //Go to
    { "keys": ["f3"], "command": "implement" },
    // Constructor property
    { "keys": ["f4"], "command": "insert_php_constructor_property" },
    // Re-indent tags
    {"keys": ["f5"], "command": "reindent", "args": {"single_line": false}},
    // Markdown preview
    { "keys": ["super+p"], "command": "markdown_preview", "args": {"target": "browser", "parser":"markdown"} },
    // Close tag
    { "keys": ["super+shift+p"], "command": "close_tag" },
]