I\'m using Notepad++ for some projects and miss Visual Studio\'s Ctrl + X, Ctrl + C functionality that cuts or copies the entire curr
Create this python script using the menu Plugins -> Python Script -> New script:
if editor.getSelectionStart() == editor.getSelectionEnd():
editor.lineCut()
else:
editor.cut()
Restart notepad++ (important)
Go to Menu Settings -> Shortcut Mapper -> Plugin commands
Find the script you just created in the list and set CTRL+X shortcut for it
Enjoy!