fdorg / flashdevelop

FlashDevelop is a free and open source code editor.
MIT License
825 stars 221 forks source link

Find and Replace, class rename - add prev/next word part hotkeys #902

Open gene-pavlovsky opened 9 years ago

gene-pavlovsky commented 9 years ago

The scintilla code editor has Ctrl-/ and Ctrl-\ for previous/next word part (which I remap to more convenient Ctrl-Alt-Left/Right using AutoHotKey). But I really miss that functionality in find and replace dialogs, as well as when renaming something with Refactor > Rename, or changing the name when duplicating a file. I think a very common use case for Find&Replace as well as Rename is to rename some identifier by removing/adding/changing particular word part(s), keeping most of the original unchanged. So it would be very convenient to be able to navigate quickly between word parts.

Meychi commented 9 years ago

These controls don't have this functionality builtin but i'm marking this as a future improvement.

gene-pavlovsky commented 9 years ago

So I thought. Thanks

wise0704 commented 7 years ago

This is much easier to implement with my new branch (https://github.com/wise0704/FlashDevelop/tree/ExtendedShortcuts) which is planned to be made into a PR after the Extended Shortcut #1522, which was reverted last time (insert sadface).

It would just need to handle "Scintilla.WordLeft" etc. shortcut commands in modal window shortcut handlers.