sublimity icon indicating copy to clipboard operation
sublimity copied to clipboard

suggestions add the following functions

Open shelper opened this issue 11 years ago • 3 comments

  1. configurable font size for the minimap
  2. clickable minimap to jump to the position clicked
  3. option disable minimap when idling, e.g, (sublimity-map-set-delay 0) thanks

shelper avatar Jun 21 '13 15:06 shelper

Thanks for comments.

i. configurable font size for the minimap

fixed sublimity-map-setup-hook. now you may change font size with this hook.

(add-hook 'sublimity-map-setup-hook (lambda () (text-scale-set -3)))

ii. clickable minimap to jump to the position clicked

I have never implemented a command that uses mouse butons, so for now it is somewhat challenging for me. if you can implement it, i will be happy to pull it. otherwise, I will implement someday, when I get some time off. thanks.

iii. option disable minimap when idling

now sublimity-map-set-delay can take "'inf" as the argument. you can pass "'inf" to cancel the idle-timer.

(sublimity-map-set-delay 'inf)

zk-phi avatar Jun 22 '13 06:06 zk-phi

In relation to Item 3, the minimap shows up when idling even if sublimity-mode is disabled. I fixed it and sent a pull request.

prvteprts avatar Aug 22 '13 03:08 prvteprts

@prvteprts fixed. thanks for reports.

zk-phi avatar Aug 26 '13 11:08 zk-phi