Unai Hernández Minaberry
Unai Hernández Minaberry
I think Lua is a good option for Moe's scripting. It's a language easy to embed.
> Do you think Lua is a good choice more than NimScript? @fox0430 NimScript is more complex, so it's more difficult to embed.
What about `ct` and `yf`? You should implement this generally, for any movement command...
There is `cw` and `cb` too And `cF`, and `cT`...
@fox0430 that's not the way, you shouldn't implement the commands one by one...
> @uninhm > > Probably, I don't understand it... > Could you please example or more explain? There is a lot of movement commands and a lot of combinations with...
Can you reopen, please?
1) Implement the same you did for `{}` but for `()` and `[]` 1.1) Edit: I saw you did it for other languages but not for Nim 2) Indent when...
https://github.com/fox0430/moe/blob/develop/src/moepkg/editor.nim#L289 My question is, why not? It's not LISP... At least in Python I'm pretty sure that the "standard" style is ```python function( arg1, arg2 ) ``` (with a new...
``` type Erase = object const d = Erase() proc `%`(d: Erase) = echo "Clear the buffer" %d ``` If you decide to use NimScript on the EX mode :)