0

I'm using sublime text 2 on Mac OS at work and on Ubuntu 14.04 at home.

At work, when I use 'subl .' on the command line, it open the folder I'm in in Sublime, then return so I can type other commands.

At home, when I 'subl .', it open the files too. But it don't return, and my console is used to pass me messages from sublime running.

I'm missing something there, I can't find how to do this simple configuration.

Ruff9
  • 1,163
  • 15
  • 34

2 Answers2

1

How about launching subl as a background process with &?

subl . &
sherb
  • 5,845
  • 5
  • 35
  • 45
  • Thanks. I have another problem, allready treated there : http://stackoverflow.com/questions/23165426/sublime-text-on-ubuntu-14-04-keeps-attempting-to-remove-it Ubuntu 14.04 seems to be responsible here. – Ruff9 Nov 15 '14 at 22:40
0

Use following way

subl . &

This is unix background command

Community
  • 1
  • 1
Atilla Ozgur
  • 14,339
  • 3
  • 49
  • 69