Anatoly Galiulin

Results 16 comments of Anatoly Galiulin

Are there any progress with typescript support?

Maybe offtopic, but I'm working on sbt plugin that can generate typescript types + io-ts definitions + scala types with xml/json codecs. Types definitions are written in scala dsl. It's...

Also found the problem with H2 and numeric type. Table ```sql create table contract( customer_id int8 references customer, product_id int8 references product, amount numeric not null ); ``` Error on...

README says: ``` This project is not maintained anymore. If someone wishes to take over, let me know ;) ```

The only thing I did is turned off autoindent on paste. For spacemacs this can be done via: ``` (add-to-list 'spacemacs-indent-sensitive-modes 'nim-mode) ```

@yuutayamada, maybe ``indent-region`` must only fix explicit indent errors and must not touch the existing structure, as it was shown in the first message? For example, if I use 2...

Ok, here is another problem. The code: ```nim if url =~ parser: let params = @matches.filterIt(not it.isNil) case params.len of 1:# Cursor is here else: result = ("Malformed jdbc url:...

Looks like it can be reproduced in spacemacs only

After some investigations, I found the solution [here](http://emacs.stackexchange.com/questions/5939/how-to-disable-auto-indentation-of-new-lines): > (when (fboundp 'electric-indent-mode) (electric-indent-mode -1)) But now ``case`` branches stopped indenting and looks like: ```nim case params.len of 1: ```

@krux02, one more comment, ``else`` branch reindents after inserting ':' symbol, not the newline