I have set global shortcut to bring up terminal window any time I want I by pressing cmd+shift+.
The problem is I can’t press that command when i’m sublime. Press it will not bring me terminal window.
I have set global shortcut to bring up terminal window any time I want I by pressing cmd+shift+.
The problem is I can’t press that command when i’m sublime. Press it will not bring me terminal window.
What do you mean by
Do you mean a terminal that would be in the same directory as you are now? There’s a plugin called Terminal that should do the job.
If by Terminal you mean Console, you invoke it by View -> Show Console, or CTRL + (back-tick).
`
I have that plugin, it will open a new window at current folder. I need to show the current terminal window only.
I don’t know if this is possible… I’m not sure if it’s the same shortcut on mac, but on window, so change windows, if you press alt+tab, you’ll swap window.
I am not sure what you want, but I suggest that you read the instructions for the Terminal package which you have.
It may help you.
It seems as if it is more of a Mac problem than a Sublime Text problem. Does the command work with other applications?
I cannot help you with Mac problems since I use Windows exclusively. If it only Sublime Text is affected, it may have something to do with the path, but I am not sure.
Sublime text blocks the shortcuts that it use (I think). It means that you have a command binded to cmd+shift+.
. And it’s emmet:
{
"keys": [
"shift+super+."
],
"args": {
"action": "select_next_item"
},
"command": "run_emmet_action",
"context": [
{
"key": "emmet_action_enabled.select_next_item"
}
]
},
from the Default (OSX).sublime-keymap
So, it’s not a good solution, but it’s the only thing I have: edit this file, and remove/change this shortcut. Then it should work.
My default key binding doesn’t have the following
{
"keys": [
"shift+super+."
],
"args": {
"action": "select_next_item"
},
"command": "run_emmet_action",
"context": [
{
"key": "emmet_action_enabled.select_next_item"
}
]
},
So, did you mean to suggest me to add that code to my default key binding??
I just know there is package that has default key map that has the shortcut super+shift+.
So I guess that once overrides my global shortcut.
I tried to edit that shortcut to something else but sublime disabled editing in that file.
Sorry for not being clear…
That’s weird, it doesn’t for me. But here’s a trick.
view -> show console
)view.set_read_only(False)
And now, you can edit it.
Try this in my default sublime keymap:
`
{ “keys”: [“shift+super+.”], “command”: “None” },
`
How did you opened this file? Using PackageResourveViewer: Open Resource
? If it’s the case
Color Highlighter
PackageResourceViewer: extract Package
Color Highlighter
And then, reopen this file (you can use PackageResourveViewer: Open Resource
now, it doesn’t matter), and it should work.