Sublime Forum

EasyMotion in sublime

#12

Alright. Just making sure I didn’t miss something… No prob

0 Likes

#13

I am so happy right now… motion is so easy…

0 Likes

#14

Can you add me please? jbrooksuk :smiley:

0 Likes

#15

Thank you :smiley:

0 Likes

#16

Have some posts in this thread been deleted? Having some difficulty following - did someone create a plugin / key binding set to emulate EasyMotion in VIM?

0 Likes

#17

The plugin mentioned is an evolution of a select to character command originally written for ST1. It highlighted the character regions to provide some predictability. I was playing about after that with some weird bisecting navigation, using a skip jump, reverse and skip again style, made possible because of the predictability. Then I thought about just using [di]graphs (and later non contiguous digraphs) I called it hotspots.

@COD312 asked about EasyMotion and it sounded like my old plugin. From what I’ve read/heard of EasyMotion I don’t think you could currently implement it in Sublime. I wish you could as I think it’s a superior method. It does a similar menuising of the visible region but [a]nstead **t [c]aints [d]etters [e]ver [f]he [g]okens. Reading that, you’d imagine it wouldn’t be that practical, but consider you are already laser targeted on where you want to go typically when you initiate a motion.

@COD312 was recently asking me about publishing the plugin. Maybe I will. Just don’t expect EasyMotion. It’s similar in scope but different in execution.**

0 Likes

#18

bitbucket.org/sublimator/volcanoes

0 Likes

#19

0 Likes

#20

You winning kids these days :confused: I can’t believe it’s not clojure

0 Likes

#21

I’ve installed it, but I can’t find how to enter in volcanise mode.

Can you show me how to use the plugin step by step, please?

Thank you.

0 Likes

#22

If you’re on Windows, hit alt+n. On OS X, ctrl+n. I believe those are the defaults.

0 Likes

#23

That might be the problem. I’m on Linux and Ctrl+n opens a new file.

0 Likes

#24

I have it working now on Linux. I had to rename the file “Default.querty-keymap” to “Default (Linux).sublime-keymap”.

Great plugin! A must have!

Good job…

0 Likes

#25

This is a really cool plugin, thanks to the author! It’s even inspired me to setup my keybindings so that I can do all my navigating and editing from home row :smile:

I’m not sure if this is still being developed but I’d like some clarification on something (or perhaps this is a bug), if I open the volcanoes README.txt file and put the cursor at the beginning of file and then press the volcanoes hotkey to navigate down I see what’s shown in this screenshot:

http://ubuntuone.com/5jWLxLY97q9t0VgMY6xZbX

I highlighted two regions in red circles, my question is: how would I navigate to the second red circle? Pressing ‘de’ takes me to the region in the first red circle.

Another suggestion would be to allow changing the colours of the region highlighting based on the current theme.

Thanks!

0 Likes

#26

This plugin has been deprecated. It source is available; however, if you are interested in putting work into it (but be warned: deciphering @sublimator’s code is frustrating at best :smile: ). As for the issue with the circles, the underline means that the digraph is reverse. So to get there, press ed. To change the color of the highlights, you’ll have to delve into the plugin code. It’s probably no too difficult but you never know.

0 Likes

#27

[quote=“sheldno”]
Another suggestion would be to allow changing the colours of the region highlighting based on the current theme.[/quote]

Take a look at Packages/Volcanise/volcanise.sublime-settings

[pre=#0C1021]{
“debug” : false,

"region_scopes" : {
    "digraph.underlines"            : "support",
    "digraph.reversed_underlines"   : "entity",
    "digraph.outlines"              : "entity",
    "digraph.line_numbers"          : "entity", "bookmark"],
    "characters"                    : "string",
    "direction_indicator"           : "source"
},

"landbacks" : {

}

}[/pre]

You probably wanna make sure that there’s a distinction between “digraph.underlines” and “digraph.reversed_underlines”. Like the bindings being optimized for colemak, the default regions are optimised for the blackboard colorscheme

no comment …

edit: 0xFFFFFFFFFFF

0 Likes

#28

I meant that in a good way :smile:

0 Likes

#29

and ignore the landbacks key …

as cod mentioned … no movement on this plugin in a long time …

0 Likes

#30

Thanks for the help! I’ve got the colours and reversed underlines down now.

If the plugin’s deprecated do you guys still use it or is there something else you use instead? Seems like it’s still functioning so that’s good…

0 Likes

#31

I personally use it every day …

0 Likes