diff options
| author | Maxime Coste <mawww@kakoune.org> | 2017-02-01 20:54:29 +0000 |
|---|---|---|
| committer | Maxime Coste <mawww@kakoune.org> | 2017-02-01 22:53:42 +0000 |
| commit | bc0dfa9e8fe488a1847580b50fa39ad42a987dc2 (patch) | |
| tree | 7255ebd749dc48c41963dbe370ef55d82573c1ed /src/selection.hh | |
| parent | 65bbc19d6fb6c1e9a719d5c2dd5578462a1269b5 (diff) | |
Use <a-'> for backward rotate selection and move rotate content to <a-">
Diffstat (limited to 'src/selection.hh')
| -rw-r--r-- | src/selection.hh | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/selection.hh b/src/selection.hh index 7772f72c..2793fd67 100644 --- a/src/selection.hh +++ b/src/selection.hh @@ -97,8 +97,6 @@ struct SelectionList size_t main_index() const { return m_main; } void set_main_index(size_t main) { kak_assert(main < size()); m_main = main; } - void rotate_main(int count) { m_main = (m_main + count) % size(); } - void avoid_eol(); void push_back(const Selection& sel) { m_selections.push_back(sel); } |
