diff options
author | nyamatongwe <devnull@localhost> | 2011-05-21 10:18:24 +1000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2011-05-21 10:18:24 +1000 |
commit | 9ed1465a78cc69038d8a5655e6e1dba9c4258e5b (patch) | |
tree | 54b0eaa941abfd1540faab5db91980548c0f12f0 /include/Scintilla.iface | |
parent | ea7aa404479ca0981b5f55b8863858585b61b603 (diff) | |
download | scintilla-mirror-9ed1465a78cc69038d8a5655e6e1dba9c4258e5b.tar.gz |
Move Selected Lines Up / Down. Feature #3304850.
From Olivier Dagenais.
Diffstat (limited to 'include/Scintilla.iface')
-rw-r--r-- | include/Scintilla.iface | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/Scintilla.iface b/include/Scintilla.iface index 2cd7eba1d..8cd3ab5d0 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -2125,6 +2125,12 @@ fun int ContractedFoldNext=2618(int lineStart,) # Centre current line in window. fun void VerticalCentreCaret=2619(,) +# Move the selected lines up one line, shifting the line above after the selection +fun void MoveSelectedLinesUp=2620(,) + +# Move the selected lines down one line, shifting the line below before the selection +fun void MoveSelectedLinesDown=2621(,) + # Start notifying the container of all key presses and commands. fun void StartRecord=3001(,) |