Yesterday I discovered that there's a much more simple way to unclutter your screen making the cursor invisible.
(setq make-pointer-invisible t)Voilà, that's it.
Technical stuff, mostly
(setq make-pointer-invisible t)Voilà, that's it.
[ /tmp ] %mkdir test
[ /tmp ] %cd test
[ /tmp/test ] %ls
[ /tmp/test ] %mkdir foo
[ /tmp/test ] %echo OHAI >foo/bar
[ /tmp/test ] %cd foo
[ /tmp/test/foo ] %ls
bar
In another terminal
[ ~ ] %cd /tmp/test
[ /tmp/test ] %ls
foo
[ /tmp/test ] %mv foo bar
[ /tmp/test ] %ls bar
bar
[ /tmp/test/foo ] % ls
bar
[ /tmp/test/foo ] %pwd
/tmp/test/bar
Is there a reason for that?