Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Alt + P not working within Sublime on MacOSX El Capiton #9

Open
mheesakkers opened this issue Jan 10, 2016 · 2 comments
Open

Alt + P not working within Sublime on MacOSX El Capiton #9

mheesakkers opened this issue Jan 10, 2016 · 2 comments

Comments

@mheesakkers
Copy link

Hi there,

Installing of the SublimeBlender package and the addon don't seem to work.
The Alt + P shortcut doesn't work I guess?

@angiloth
Copy link

angiloth commented Feb 7, 2016

Same issue noted on windows. autocomplete works, but I cannot get execute command to function.
verified with sublime.log_commands(True)

@cfreude
Copy link

cfreude commented May 24, 2017

Maybe this was the same annoying bug I had.
It was due to wrong JSON keymap definitions.

Example - "Default.sublime-keymap":

[ { "keys": ["alt+p"], "command": "sublime_blender_execute", "keys": ["alt+shift+p"], "command": "sublime_blender_restart_module" } ]

Here it's only one object where the "keys" and "command" properties are specified twice and hence overwritten. Therefore, only the second command works.

Fixed:

[ { "keys": ["alt+p"], "command": "sublime_blender_execute" } , { "keys": ["alt+shift+p"], "command": "sublime_blender_restart_module" } ]

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants