Advertisement
Guest User

Untitled

a guest
Feb 12th, 2016
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.12 KB | None | 0 0
  1. [
  2.  
  3. { "keys": ["ctrl+alt+a"], "command": "toggle_minimap" },
  4. {
  5. "keys": ["alt+shift+2", "alt+shift+right"],
  6. "command": "set_layout",
  7. "args":
  8. {
  9. "cols": [0.0, 0.96, 1.0],
  10. "rows": [0.0, 1.0],
  11. "cells": [[0, 0, 1, 1], [1, 0, 2, 1]]
  12. }
  13. },
  14. {
  15. "keys": ["alt+shift+2", "alt+shift+left"],
  16. "command": "set_layout",
  17. "args":
  18. {
  19. "cols": [0.0, 0.04, 1.0],
  20. "rows": [0.0, 1.0],
  21. "cells": [[0, 0, 1, 1], [1, 0, 2, 1]]
  22. }
  23. },
  24. {
  25. "keys": ["alt+shift+3", "alt+shift+right"],
  26. "command": "set_layout",
  27. "args":
  28. {
  29. "cols": [0.0, 0.91, 0.96, 1.0],
  30. "rows": [0.0, 1.0],
  31. "cells": [[0, 0, 1, 1], [1, 0, 2, 1], [2, 0, 3, 1]]
  32. }
  33. },
  34. {
  35. "keys": ["alt+shift+3", "alt+shift+left"],
  36. "command": "set_layout",
  37. "args":
  38. {
  39. "cols": [0.0, 0.04, 0.08, 1.0],
  40. "rows": [0.0, 1.0],
  41. "cells": [[0, 0, 1, 1], [1, 0, 2, 1], [2, 0, 3, 1]]
  42. }
  43. },
  44. {
  45. "keys": ["alt+shift+8","alt+shift+up"],
  46. "command": "set_layout",
  47. "args":
  48. {
  49. "cols": [0.0, 1.0],
  50. "rows": [0.0, 0.05, 1.0],
  51. "cells": [[0, 0, 1, 1], [0, 1, 1, 2]]
  52. }
  53. },
  54. {
  55. "keys": ["alt+shift+8","alt+shift+down"],
  56. "command": "set_layout",
  57. "args":
  58. {
  59. "cols": [0.0, 1.0],
  60. "rows": [0.0, 0.95, 1.0],
  61. "cells": [[0, 0, 1, 1], [0, 1, 1, 2]]
  62. }
  63. },
  64. {
  65. "keys": ["alt+shift+9","alt+shift+up"],
  66. "command": "set_layout",
  67. "args":
  68. {
  69. "cols": [0.0, 1.0],
  70. "rows": [0.0, 0.05, 0.10, 1.0],
  71. "cells": [[0, 0, 1, 1], [0, 1, 1, 2], [0, 2, 1, 3]]
  72. }
  73. },
  74. {
  75. "keys": ["alt+shift+9","alt+shift+down"],
  76. "command": "set_layout",
  77. "args":
  78. {
  79. "cols": [0.0, 1.0],
  80. "rows": [0.0, 0.90, 0.95, 1.0],
  81. "cells": [[0, 0, 1, 1], [0, 1, 1, 2], [0, 2, 1, 3]]
  82. }
  83. },
  84. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement