- Change default Linux shortcut to Alt+r.
- Add more default toggles (#4).
- Change behavior without explicit selection(s):
- In the previous version, when no obvious selection was specified when triggering the plugin, we used the Atom API to create a fake selection encompassing the current word under the cursor. This lead to issues with some toggles like
test.only
being replaced totest.test.only
when the cursor was somewhere in thetest
part of the word to replace. Having the cursor in theonly
part of the word failed to even trigger the toggle operation. - Starting from this version, when no selection is found, we're parsing all the text around the cursor to find the best possible word to replace based on the configuration.
- When a selection is explicitly given, we only try to replace the current selection.
- Please note that this change required modifications in the default configuration file. You should update your existing configuration file based on the new one.
- In the previous version, when no obvious selection was specified when triggering the plugin, we used the Atom API to create a fake selection encompassing the current word under the cursor. This lead to issues with some toggles like
- Change the default Windows shortcut to Alt + r instead of Ctrl + r.
- First release.