Advertisement
Guest User

Untitled

a guest
Sep 6th, 2020
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.13 KB | None | 0 0
  1. [
  2. { "keys": ["super+alt+p"], "command": "paste_previous_assign" },
  3. { "keys": ["option+c"], "command": "insert", "args": {"characters": "continue\n"} },
  4. { "keys": ["option+i"], "command": "insert", "args": {"characters": "import "} },
  5. { "keys": ["option+b"], "command": "insert", "args": {"characters": "break\n"} },
  6. { "keys": ["option+d"], "command": "insert", "args": {"characters": "def "} },
  7. { "keys": ["option+e"], "command": "insert", "args": {"characters": "else:"} },
  8. { "keys": ["option+f"], "command": "insert", "args": {"characters": "for"} },
  9. { "keys": ["option+shift+f"], "command": "insert", "args": {"characters": "False"} },
  10. { "keys": ["option+shift+t"], "command": "insert", "args": {"characters": "True"} },
  11. { "keys": ["option+n"], "command": "insert", "args": {"characters": "not"} },
  12. { "keys": ["option+shift+n"], "command": "insert", "args": {"characters": "None"} },
  13. { "keys": ["option+r"], "command": "insert", "args": {"characters": "return"} },
  14. { "keys": ["option+w"], "command": "insert", "args": {"characters": "while"} },
  15. { "keys": ["option+y"], "command": "insert", "args": {"characters": "yield"} },
  16. ]
  17.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement