Loosely ordered with the commands I use most towards the top. Sublime also offer full documentation.
See also: Sublime Text Keyboard Shortcuts at SuperUser.
| Ctrl+.. | show command palette |
<!—
| // SO 29538557 | |
| void main() { | |
| print({'name': 'jhon', 'lastName': 'Doe'} == | |
| {'name': 'jhon', 'lastName': 'Doe'}); | |
| } |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!-- | |
| Syntax highlighting definition for Dart | |
| xslthl - XSLT Syntax Highlighting | |
| http://sourceforge.net/projects/xslthl/ | |
| Copyright (C) 2005-2008 Michal Molhanec, Jirka Kosek, Michiel Hendriks | |
| This software is provided 'as-is', without any express or implied |
| %% | |
| %% This style is derived from the docbook one. | |
| %% | |
| \NeedsTeXFormat{LaTeX2e} | |
| \ProvidesPackage{asciidoc}[2008/06/05 AsciiDoc DocBook Style] | |
| %% Just use the original package and pass the options. | |
| \RequirePackageWithOptions{docbook} | |
| % Sidebar is a boxed minipage that can contain verbatim. | |
| % Changed shadow box to double box. |
| #!/bin/bash | |
| # ~ doesn't work in string resolution use /home/$USER/ instead | |
| DOWNLOAD_DIR="/home/$USER/Downloads/Dart" | |
| CURRENT_VERSION_FILE="VERSION_current" | |
| NEW_VERSION_FILE="VERSION_new" | |
| #DOWNLOAD_VERSION_FILE="VERSION_download" | |
| #VERSION_URL="http://gsdview.appspot.com/dart-archive/channels/dev/release/latest/VERSION" | |
| VERSION_URL="http://gsdview.appspot.com/dart-archive/channels/be/raw/latest/VERSION" | |
| #EDITOR_LINUX64_URL="http://gsdview.appspot.com/dart-archive/channels/dev/release/latest/editor/darteditor-linux-x64.zip" |
| <link rel="import" href="../core-icon-button/core-icon-button.html"> | |
| <link rel="import" href="../core-toolbar/core-toolbar.html"> | |
| <link rel="import" href="../core-menu/core-submenu.html"> | |
| <link rel="import" href="../core-item/core-item.html"> | |
| <polymer-element name="my-element"> | |
| <template> | |
| <style> | |
| :host { |
Loosely ordered with the commands I use most towards the top. Sublime also offer full documentation.
See also: Sublime Text Keyboard Shortcuts at SuperUser.
| Ctrl+.. | show command palette |
<!—
| ls -l | egrep -v '^d' # files | |
| ls -l | egrep '^d' # directories | |
| find . -type f | wc -l |
| dhclient -r # release | |
| dhclient # get ip |