Open Eddy1028 opened 8 years ago
Same problem here.
Environment: OS: Linux Mint 18 (fully updated) Atom: 1.10.2 atom-terminal: 0.8.0
ctrl+shift+t
won't work until I press alt+shift+t
first, then it works just fine.
Also before I pres alt+shift+t
, if I open Command Palette there is only the atom-terminal:open-project-root
command, but not the atom-terminal:open
.
After I run atom-terminal:open-project-root
or press alt+shift+t
the command is available in Command Palette.
I have probalby found a solution/workaround, at least for Linux. The problem is, that (on Linux) there is a shortcut ctrl+T
which is colliding with atom-terminal
's shortcut.
You can take a look at this screenshot:
So the solution would be to change atom-terminal
's shortcut to something else.
Edit:
Changing shortcut doesn't help, atom-terminal:open
is still inaccessible until I run atom-terminal:open-project-root
.
I have same problem.
Environment: OS: Windows 7 Pro Atom: 1.11.2 atom-terminal: 0.8.0
Fix in new version. 0.8.1.
on archlinux i did. version 0.8.0. goto package , atom-terminal , viewcode then select package.json file, line 40 add ("atom-terminal:open",) without braces. It work for me and left keybindings the same.
"activationCommands": {
"atom-workspace": [
"atom-terminal:open",
"atom-terminal:open-project-root"
]
},
@DrakeMagi Could you please clarify? the snippet you provide is identical to current code
It identical to current code version 0.8.1. but in version 0.8.0 he forgot to add "atom-terminal:open", . changes made in May 27, 2015 commit and merge June 2, 2015. but only problem with commit was surpressDirectoryArgument: default to false did not work for me. I kept mind true.
@DrakeMagi thank'you!
Is v0.8.1 going to be released any time soon so this goes out to everybody?
@tech4him1, @DrakeMagi 's fix worked for me
Between lines 40 and 41 of package.json, add: "atom-terminal:open",
It looks @karan has abandoned this project - nearly 2 years, no commits. @drelyn86 has forked the project and is ahead about 18 commits, but has similarly abandoned repo a year ago.
OTOH, @blueimp's 'open-terminal-here' seems lively, provides the same functionality as atom-terminal, also adds a very handy context menu item to the workspace and tree view. I've personally jumped ship for that package in the middle of writing this note, lol.
... And of course, you may always fork karan's project ;)
If you are on WIndows like me and still looking for a fix, line 25 on package.json, add 'atom-terminal:open',
It should look like this:
"activationCommands": {
"atom-workspace": [
"atom-terminal:open",
"atom-terminal:open-project-root"
]
},
Environment: Operation System: Win7 atom-terminal version: 0.8.0
Steps to reproduce:
ctrl+shift+t
.Result: nothing happened.
Note: But, when after press
alt+shift+t
, then pressctrl+shift+t
, it works.Thanks!