6

is this seriously the solution to this problem?

http://www.devdaily.com/blog/post/mac-os-x/how-to-move-textmate-project-drawer-left-right-side

josephmisiti
  • 9,862
  • 11
  • 56
  • 72

4 Answers4

24

You can do it this way:

in the menu -> View -> Hide project drawer

then move the textmate window to the side of the screen e.g. far left if you want the drawer on the right side

then back to the menu -> View -> show project drawer

it will open on whichever side it has room based on where you placed the window on the screen.

Greg
  • 243
  • 2
  • 3
  • This solution is not working for TextMate 2. Please look at this solution http://stackoverflow.com/questions/3795726/how-to-move-the-textmate-file-explorer-to-the-right-side in case if you are using latest versions. – maniempire Sep 20 '14 at 13:54
3

Unfortunately, yes. As far as I know, that is the only way to force TextMate to change the side the drawer is on.

Michael Melanson
  • 1,325
  • 10
  • 21
2

If you have it installed, go to Preferences > Project+ > Sidebar and select "Show sidebar on the right side of the window".

Nikhil Thombare
  • 1,058
  • 2
  • 11
  • 26
2

Here is a better solution.

defaults write com.macromates.textmate OakProjectDrawerPrefersRightEdge -bool NO
tim
  • 917
  • 3
  • 14
  • 24
  • 1
    this doesn't work, the drawer will still open on whatever side it has more room on. – braitsch Jun 13 '12 at 19:26
  • `defaults write com.macromates.TextMate.preview fileBrowserPlacement right` should work for OSX. Changing the last part of the command from `right` to `left` will switch it back to the left side. – Peter Berg Jun 26 '13 at 15:01