Jöran Karl
Jöran Karl
Does `cat` or `less` behave the same in your `zsh`? For me the same (using `''`, `""` & `\:`) works with `open` from within `micro`.
Ok, then let me guess: You've the `parsecursor` option enabled in your [options](https://github.com/zyedidia/micro/blob/master/runtime/help/options.md). > `parsecursor`: if enabled, this will cause micro to parse filenames such as file.txt:10:5 as requesting to...
The most user wouldn't have a problem with that scenario due to the fact that it isn't the default option, but yes this option isn't intended to fail in this...
You can enable `parsecursor` again after the PR has been merged or you fix it locally with a patch. :wink: Unfortunately the merge window isn't under my control.
We need to check, if the prefix of `x1b` in [bindings.go#L155](https://github.com/zyedidia/micro/blob/master/internal/action/bindings.go#L155) is sufficient, since @zyedidia mentioned in [keybindings.md](https://github.com/zyedidia/micro/blob/master/runtime/help/keybindings.md) the following: > The terminal sends these events in the form of...
> @JoeKar I tried to change the lines to: > > ``` > "\\x1bOC": "SelectWordRight", > "\\x1bOD": "SelectWordLeft", > ``` > > Now micro says at launch: > > ```...
> > But at the end I've to ask the question, why not simply assign `"Left"` & `"Right"` to your actions? > > Well, Left and Right are the arrow...
@dmaluka > (Yeah, arguably it is a bug: micro does not attempt to properly parse `\x`-escaped strings, instead it simply relies on the JSON parser which does not support `\x`...
@dmaluka Again I'd appreciate your feedback on this. ;)
> ...Actually there is one more thing that is not working: cannot bind raw sequences in micro via `bind` command. I will have a look on that too, since I'm...