All Projects → randy3k → ChangeList

randy3k / ChangeList

Licence: other
DEPRECATED: The missing Change List for Sublime Text 2/3 - History List, Last Edit ...

Programming Languages

python
139335 projects - #7 most used programming language

DEPRECATED:

Use Sublime 3.2's ctrl+, and ctrl+. instead.

The missing Change List for Sublime Text 2/3 - History List, Last Edit ...

It remembers where changes were made.

Installation

Via Package Control

Usage

  • Launch Change List: Show in Command Palette to show Change List.
  • Launch Change List: Clean in Command Palette to clean or rebuild Change List.
  • ctrl+; go to previous change
  • ctrl+, go to next chnage
  • ctrl+. go to the lastest change

Change key bindings

Ignore this if you want to stay with the original keys. The User Key Bindings file can be accessed from Preferences -> Key Bindings - User.

    [
        { "keys": ["ctrl+;"], "command": "jump_to_change", "args": {"move": -1}},
        { "keys": ["ctrl+,"], "command": "jump_to_change", "args": {"move": 1}},
        { "keys": ["ctrl+."], "command": "jump_to_change", "args": {"index": -1}}
    ]

Notes

This plugin aims at recovering the full functionality of change list of VIM.
Last 50 history for each file is saved.
This plugin saves history to Packages/User/ChangeList.json.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].