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

Compare​Buff

by VK ALL

Sublime Text package to compare two buffers using external Comparison Tool

Details

Installs

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

Readme

Source
raw.​githubusercontent.​com
_______ _______ __   __ _______ _______ ______   _______ _______ __   __ _______ _______ 
|       |       |  |_|  |       |   _   |    _ | |       |  _    |  | |  |       |       |
|       |   _   |       |    _  |  |_|  |   | || |    ___| |_|   |  | |  |    ___|    ___|
|       |  | |  |       |   |_| |       |   |_||_|   |___|       |  |_|  |   |___|   |___ 
|      _|  |_|  |       |    ___|       |    __  |    ___|  _   ||       |    ___|    ___|
|     |_|       | ||_|| |   |   |   _   |   |  | |   |___| |_|   |       |   |   |   |    
|_______|_______|_|   |_|___|   |__| |__|___|  |_|_______|_______|_______|___|   |___|

CompareBuff

CompareBuff is Sublime Text package which allows you to compare any two open files/buffers using an external comparison tool like Beyond Compare. To benefit from this package you must have the external tool installed and the tool must allow the files to be passed as command-line arguments.

Using this package you can compare current file/buffer with any other open file/buffer from any existing sublime windows. Once you invoke the command you'll be asked to select another file/buffer which you wish to compare against the current one.

Take a look at How to Use for usage.

Installation

  • Install Sublime Text Package Control. Skip if installed already
  • Go to Tools > Command Palette. Select Package Control: Install Package
  • Type or select CompareBuff and hit Enter
  • Wait for installation to finish

How to use

First off you need to configure External tool path and other optional settings. Head over to Customization & come back to this section.

Once you have basic setup, you can invoke the command in few ways:

  • Command Palette (Ctrl+Shift+P on Windows or Cmd+Shift+P on Mac) > Input/select CompareBuff: compare with...
  • Right click context menu (if enabled) select CompareBuff: compare with...
  • User defined key shortcut (see Defining Key Binding)

This will present a quick panel where you can select other file/buffer to compare against the current one. Once you select second file/buffer the external comparison tool will launch using those.

You can also click window label inside panel. It will open that window's views in a new panel for selection. It's useful when you have number of views open.

How does it work

Once you launch the command, the package works on the file/buffers as below before sending to tool:

  • if the buffer is a valid file with no unsaved modifications the original file is directly sent to tool
  • if the buffer is a valid file with any unsaved modifications then a temp file is created with original file name & sent across
  • if the buffer is a scratch/untitled then a temp file is created and sent across
  • if prefer_selection is true (default) then only selected lines/blocks (if any) are sent across for that file/buffer

Defining Key Binding

You can also define the binding in your User Key Binding file (Preferences > Key Bindings ) e.g.

{ "keys": ["ctrl+alt+/"], "command": "compare_buff" }

Customization

You can override the default settings in User Settings file (Preferences > Package Settings > CompareBuff > Settings):

{
    // Provide the External Comparison tool path here e.g. Beyond Compare.
    // Make sure you use the correct path of the binary as it exists
    // ** WINDOWS **
    "external_tool_path": "C:\\Program Files\\Beyond Compare 4\\BCompare.exe",

    // NOTE: Above command will send the selected buffers as argument implicitly but
    // if you need to send more than two arguments to the external tool then you can
    // define as below where {0} and {1} are replaced with the buffers you select
    // "external_tool_path": [ "C:\\Program Files\\Beyond Compare 4\\BCompare.exe", "--file1", "{0}", "--file2", "{1}" ],

    // ** MAC-OS **
    // "external_tool_path": "/Applications/Beyond Compare.app/Contents/MacOS/bcomp",
    // ** LINUX **
    // "external_tool_path": "/usr/bin/bcompare",

    // Just selection to be sent for comparison
    "prefer_selection": true,

    // Show command in view (right-click) context menu
    "show_in_context_menu": false,

    // Number of recent items to show in panel
    "number_of_recent_items": 3,

    // Show file preview in the panel
    "file_preview_in_panel": true,

    // Icons, you can disable if you see [?] in panel
    "icons":
    {
        "enable": true,
        "icon_ellipsis": "…",
        "icon_package": "🗗",
        "icon_recent_files": "🗍",
        "icon_scratch_file": "🗋",
        "icon_valid_file": "🗎",
        "icon_window": "🗔"
    }
}

License

GNU General Public License v3.0

Issues

Please report any bugs/issues here

My other work

Links