Nick Reynolds

Results 6 issues of Nick Reynolds

## Current Situtation Currently, the runtime / event manager sends terminal events as messages to the application in the following format: ```elixir {:event, %ExTermbox.Event{ ch: 0, h: 38, key: 0,...

Similar to the CSS `text-align` property, it should be possible to specify the alignment of text content inside of block-level elements in Ratatouille. For example: ```elixir label(text_align: :center, content: "Centered...

While in `/views/posts`, `:Cview ` should show other directories, something like this: ``` view add index users/ pages/ ``` I'll throw this in when I get a chance.

Add an implementation for String.prototype.replace to [`String.c`](https://github.com/ndreynolds/flathead/blob/master/src/runtime/lib/String.c) and tests to [`test_string_global.js`](https://github.com/ndreynolds/flathead/blob/master/test/test_string_global.js) following the spec [here](http://es5.github.com/#x15.5.4.11).

enhancement

Add support for RegExp separators to `str_proto_split` in [`String.c`](https://github.com/ndreynolds/flathead/blob/master/src/runtime/lib/String.c) and new tests in [`test_string_global.js`](https://github.com/ndreynolds/flathead/blob/master/test/test_string_global.js). Currently, only a string can be given as the separator, but the spec also allows a...

enhancement

This should be possible and ought to make the bindings safer. Thread-based concurrency with shared memory is hard to get right, and Rust would help ensure the memory access is...