Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ctrl+X to delete? #91

Open
dlwiii opened this issue Sep 18, 2024 · 1 comment
Open

Ctrl+X to delete? #91

dlwiii opened this issue Sep 18, 2024 · 1 comment

Comments

@dlwiii
Copy link

dlwiii commented Sep 18, 2024

For a dirt simple thing, having to hover over a menu that pops up to show X and R is cumbersome.
Is there not a short keyboard cut for this? Trying to help improve, before moving on and keeping looking for kanban nirvana

@dustinsterk
Copy link

Just add this code after the //esc comment

	// ctrl + X to delete note
	if (isNote && ev.ctrlKey && ev.keyCode  == '88')
	{
		stopEditing($this, false, false);
		deleteNote( $(this).closest('.note') );
		return false;
	}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants