ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

Switch File Deluxe

by jturcotte ALL

Switch header/source based on generic suffixes (not just the extension).

Details

  • 2017.07.27.15.22.39
  • github.​com
  • github.​com
  • 7 years ago
  • 1 hour ago
  • 12 years ago

Installs

  • Total 5K
  • Win 3K
  • Mac 1K
  • Linux 1K
Dec 21 Dec 20 Dec 19 Dec 18 Dec 17 Dec 16 Dec 15 Dec 14 Dec 13 Dec 12 Dec 11 Dec 10 Dec 9 Dec 8 Dec 7 Dec 6 Dec 5 Dec 4 Dec 3 Dec 2 Dec 1 Nov 30 Nov 29 Nov 28 Nov 27 Nov 26 Nov 25 Nov 24 Nov 23 Nov 22 Nov 21 Nov 20 Nov 19 Nov 18 Nov 17 Nov 16 Nov 15 Nov 14 Nov 13 Nov 12 Nov 11 Nov 10 Nov 9 Nov 8 Nov 7
Windows 0 0 0 0 0 0 0 0 1 0 1 0 3 0 0 1 2 1 2 1 0 1 0 0 0 0 0 0 0 4 1 1 0 0 0 1 1 0 0 1 1 0 0 1 0
Mac 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0
Linux 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0

Readme

Source
raw.​githubusercontent.​com

SublimeSwitchFileDeluxe

Switch header/source based on generic suffixes (not just the extension).

If a file can't be found in the same directory, the command also searches for it in the directory of other already opened files. It can also search in relative paths specified with "paths" setting. For example if "paths" is ["..", "../impl", "internal"], then header/source will be searched in parent folder, in 'impl' sibling folder and in 'internal' subfolder.

Example

Qt has private headers with a “_p.h” suffix, and QtWebKit has platform specific implementation headers/sources with a “Qt.” suffix. The following keymap setting would allow switching between “File.cpp” -> “FileQt.cpp” -> “FileQt.h” -> “File.h” -> “File_p.h” -> “File_p_p.h” -> … It also would search for files in sibling impl and include folders.

[
    { "keys": ["alt+o"], "command": "switch_file_deluxe", "args": {
        "extensions": [".cpp", ".cxx", ".cc", ".c", "Qt.cpp", "Qt.h", ".hpp", ".hxx", ".h", "_p.h", "_p_p.h", ".ipp", ".inl", ".m", ".mm"],
        "paths": ["../impl", "../include"]
    } }
]

Note: The dot has to be explicitely specified before extensions, unlike the standard switch_file command.