skeeto / skewer-mode

Live web development in Emacs
The Unlicense
1.1k stars 57 forks source link

Extra parameters in the request to the browser #4

Closed ScottyB closed 11 years ago

ScottyB commented 11 years ago

I would like a way for users to turn off completion candidates that were obtained from traversing the prototype chain. The easiest way to do this would be to add extra parameters to the request in skewer-eval. Something like the following:

(request (append `((type . ,type)
                   (eval . ,string)
                   (id . ,id)
                   (verbose . ,verbose)
                   (strict . ,strict)) extras)))

This would also make it easier for people to build their own skewer plugins.

skeeto commented 11 years ago

How does 4994987 look to you?

ScottyB commented 11 years ago

Great! Thanks.