mirror of
https://github.com/IgorTimofeev/MineOS.git
synced 2026-01-08 20:22:38 +01:00
Fixed missing \n while pasting from real buffer, added ctrl+x line deletion feature
This commit is contained in:
parent
90a5fed189
commit
aa3e73a616
@ -1374,7 +1374,11 @@ codeView.eventHandler = function(mainContainer, object, e1, e2, e3, e4, e5)
|
||||
paste(clipboard)
|
||||
-- X
|
||||
elseif e4 == 45 then
|
||||
cut()
|
||||
if codeView.selections[1] then
|
||||
cut()
|
||||
else
|
||||
deleteLine(cursorPositionLine)
|
||||
end
|
||||
-- N
|
||||
elseif e4 == 49 then
|
||||
newFile()
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user