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 |
| #!/usr/bin/env python | |
| def func(arg, *args, **kwargs): | |
| print arg | |
| if args: | |
| print args | |
| if kwargs: | |
| print kwargs | |
| def main(): | |
| func('hello') |
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 |
| <html> | |
| <head> | |
| <title>Flow Graph Test</title> | |
| <script src="http://d3js.org/d3.v3.min.js"></script> | |
| </head> | |
| <body> | |
| <script type="text/javascript"> |
| <!DOCTYPE html> | |
| <!--Source: http://danzel.github.io/Leaflet.utfgrid/example/map.html//--> | |
| <html> | |
| <head> | |
| <script src="http://cdn.leafletjs.com/leaflet-0.6.1/leaflet.js"></script> | |
| <link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.6.1/leaflet.css" /> | |
| <script src="http://danzel.github.io/Leaflet.utfgrid/src/leaflet.utfgrid.js"></script> | |
| <link rel="stylesheet" href="styles.css" /> | |
| </head> | |
| <body> |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Ovleray maps</title> | |
| <meta charset="utf-8" /> | |
| <script src="http://cdn.leafletjs.com/leaflet-0.6.1/leaflet.js"></script> | |
| <script src="http://d3js.org/d3.v3.min.js"></script> | |
| <style> | |
| @import url(http://cdn.leafletjs.com/leaflet-0.6.1/leaflet.css); | |
| .mapContainer{ |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Compare maps</title> | |
| <meta charset="utf-8" /> | |
| <script src="http://cdn.leafletjs.com/leaflet-0.6.1/leaflet.js"></script> | |
| <script src="http://d3js.org/d3.v3.min.js"></script> | |
| <style> | |
| @import url(http://cdn.leafletjs.com/leaflet-0.6.1/leaflet.css); | |
| .mapContainer{ |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Centered map</title> | |
| <meta charset="utf-8" /> | |
| <script src="http://cdn.leafletjs.com/leaflet-0.6.1/leaflet.js"></script> | |
| <script src="http://d3js.org/d3.v3.min.js"></script> | |
| <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script> | |
| <style> | |
| @import url(http://cdn.leafletjs.com/leaflet-0.6.1/leaflet.css); |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Comparison</title> | |
| <meta charset="utf-8" /> | |
| <script src="http://cdn.leafletjs.com/leaflet-0.6.1/leaflet.js"></script> | |
| <script src="http://d3js.org/d3.v3.min.js"></script> | |
| <script src="http://mourner.github.io/simplify-js/simplify.js"></script> | |
| <script src="linestrings.json"></script> | |
| <style> |