gsingh93

Results 152 issues of gsingh93

Looking at some [examples](https://github.com/deuterium-orm/deuterium/blob/master/tests/where_.rs), I can see how to build a query with placeholders, but I don't see how to actually fill in those place holders. It looks like I...

If I type `\Psi` and trigger completion, it gets completed to `$\Psi$`. However, `\(` is a valid alternative to `$`. We should let the user choose to use one or...

I was confused on why a rule was giving a false positive, so I checked `options_demo.js` and found the actual rule was `Index(.|\n)*modified` instead of `Index(.| )*modified`, but the rules...

I've had multiple false positives because of sites that redirect URLs that don't exist to some default page. There should be an option to not consider redirects (status codes 301/302)...

I made a rule and made a mistake in the regex. Instead of being able to edit the rule, it seems like I have to make a new one. Also,...

Am I doing something wrong here: ``` let fragment_shader_src = glassful! { #![version="140"] #[varying] static v_coord: vec3 = UNINIT; fn main() { if (abs(v_coord.z) == 0.25) { gl_FragColor = vec4(0.,...

Modern GLSL uses in/out instead of attribute/varying, this should be supported.

Right now the responses are a `Vec` of `String`s. It'd be nice if each response was it's own type/enum variant, i.e. `ListResponse` for the LIST command.

It looks like there are some unicode symbols in the conky script that aren't showing up properly. What fonts need to be installed to get those symbols?

`updateNoteFields` doesn't update tags, but I'm not sure if this is an intentional choice or not. It seems like a common pattern would be (at least one that I use)...