Trangar / zettelkasten

Rust implementation of https://en.wikipedia.org/wiki/Zettelkasten
MIT License
2 stars 1 forks source link

Remove mouse capture #31

Closed jamesmunns closed 1 year ago

jamesmunns commented 1 year ago

Fixes #30.

I was able to fix the control code issue by making a wrapper script for nano that has mouse support enabled:

cat ~/.scripts/nanom
#!/bin/bash

/usr/bin/nano -m "$@"

But it still was a little funky (selection for copy and paste didn't work as I'd expect). If this breaks someone else's workflow, it might be worth having a setting for on the "config" page :)

VictorKoenders commented 1 year ago

LGTM, thanks!