Shalabh Chaturvedi

Results 52 comments of Shalabh Chaturvedi

This is related to #218 - terminal emulation.

I think @kirbyfan64 has tried to build on Windows. See related issue #201 - may have some relevant info.

Is the keycode based translation stable? E.g. if you press `ctrl-a` does it always show up as `ctrl_97` in 'describe-key'?

I would definitely like to disable auto_pair within strings. I do find it useful in comments though.

@kirbyfan64 - is this PR still good? Maybe we can merge even if not *everything* on windows is fixed?

@MarcusE1W I'm curious what your main use cases for multiple cursors are?

I feel for some common uses a new targeted command such as `replace-word` would be better. You don't need to know regexes. I haven't played around with this feature much...

Emacs does case insensitive also until you type an uppercase letter (IIRC, it's been a while) There's still the corner case of case sensitive matching for all lowercase text. If...

Currently code blocks are specified by the mode. E.g. see https://github.com/howl-editor/howl/blob/master/bundles/lua/lua_mode.moon#L42 It's not very advanced at the moment, e.g. there are no placeholders. This would be nice to have though....

Howl uses it's own API documentation system which you can see an example in [lua/api.moon](https://github.com/howl-editor/howl/blob/master/bundles/lua/api.moon). It's attached via the mode as you can see [here](https://github.com/howl-editor/howl/blob/master/bundles/lua/lua_mode.moon#L8). I think to integrate other...