0

I just started learning Python with "A Byte of Python". I'm currently learning Light Table, the editor that the tutorial suggested.

This may be very amateurish but I have no experience whatsoever and this is all new to me.

I want to open console with cmd-shift-c so this is what my keymap looks like:

{:+ {:app {"cmd-shift-t" [:workspace.show]
           "cmd-shift-c" [:toggle-console]}

I click ctrl+shift+c and nothing happens, even after I save my keymaps file.

My editor commands work, though, when I unindent a line.

Matthew
  • 306
  • 4
  • 17
Roy Yun
  • 13
  • 2

1 Answers1

0

Since you said you clicked ctrl+shift+c I'm going to guess you're not on a Mac and should probably change your settings. I just tried the same thing as you have on my machine and it doesn't work.

However, changing it to {"ctrl-shift-c" [:toggle-console]} worked fine for me.

kiswa
  • 14,737
  • 1
  • 21
  • 29