Loosely ordered with the commands I use most towards the top. Sublime also offer full documentation.
| Ctrl+C | copy current line (if no selection) |
| Ctrl+X | cut current line (if no selection) |
| Ctrl+⇧+K | delete line |
| Ctrl+↩ | insert line after |
| <?php | |
| /* Get thumbnail from Video Embed code */ | |
| function nesia_get_video_image() { | |
| global $post; | |
| if (preg_match('%(?:youtube(?:-nocookie)?\.com/(?:[^/]+/.+/|(?:v|e(?:mbed)?)/|.*[?&]v=)|youtu\.be/)([^"&?/ ]{11})%i', $post->post_content, $match)) { | |
| $video_id = $match[1]; | |
| } else { | |
| return false; | |
| } |
| Main Link --> http://www.woothemes.com/woocommerce/ | |
| See the video, it's great! | |
| **See WooCommerce from Usability** | |
| ------------------------------- | |
| - Discount | |
| - Unlimited Coupon Code (http://take.ms/5wfoh) | |
| - Variation Products (http://take.ms/SfGy6) | |
| - SKU | |
| - Price and Sale Price (http://take.ms/krx26) |
| var departure = new google.maps.LatLng(-6.18049, 106.82638); //Set to whatever lat/lng you need for your departure location | |
| var arrival = new google.maps.LatLng(-6.17770, 106.82141); //Set to whatever lat/lng you need for your arrival location | |
| var line = new google.maps.Polyline({ | |
| path: [departure, departure], | |
| strokeColor: "#FF0000", | |
| strokeOpacity: 0.7, | |
| strokeWeight: 2, | |
| geodesic: true, //set to false if you want straight line instead of arc | |
| map: map, | |
| }); |
Loosely ordered with the commands I use most towards the top. Sublime also offer full documentation.
| Ctrl+C | copy current line (if no selection) |
| Ctrl+X | cut current line (if no selection) |
| Ctrl+⇧+K | delete line |
| Ctrl+↩ | insert line after |