How to move a file to another folder in Sublime text?

2

How to move a file to another folder in Sublime text ?

If I have this structure

-- storage/
---- src/
-- /index.php

How could I move index.php to src/storage/index.php ?

-- storage/
---- src/
------ index.php

Note : This question applies to Sublime Text 2 or 3 , since you never knew how to move files in any of them.

    
asked by anonymous 31.07.2015 / 17:35

1 answer

2

No one answered yet: (

But here I will leave my small solution to this problem in Sublime Text.

Moving a file in Sublime Text .

  • Click the file you want to right-click;
  • Select "rename";
  • Next I renamed the file pointing to the directory that wants to move it.

Example:

There are still some tricks, such as you move to a folder that is up one level using ../usuarios/nome_do_arquivo .

    
31.07.2015 / 20:22