colinfang

Results 16 issues of colinfang

I have a couple of markdown files (`.md`) in my repository. When I was editing markdown, the auto suggestions contain a lot of Julia functions with tooltips. Could we have...

Coud we add an option to only scan & lint for open files (and the `include(...)` from those open files) instead of scanning all `.jl` in the workspace. It would...

Unicode verson of `\mathbb` seems supported `\mathbb E` = `𝔼` Can we also have `\mathcal` work as well? `\mathcal O` = `𝒪` ![image](https://user-images.githubusercontent.com/1499555/80133757-9edb1280-8595-11ea-874e-0ae38f09665c.png)

enhancement

By default Sundials is not compiled with blas/lapack. I changed `build.ji` to this: ``` `./configure --prefix=$prefix --enable-shared --with-blas=/usr/lib/libblas.so.3 --with-lapack=/usr/lib/liblapack.so.3` ``` It compiled all right, and generated `cvode_lapack.o` and `cvode_lapack.o` Then...

`constants.h` defines a lot of macros, many of them are common names, e.g ```c # define RHO (0.1) # define SIGMA (1E-06) # define MAX_ITER (4000) # define EPS_ABS (1E-3)...

I have many small problems of various sizes (number of variables & constraints both between (5 ~ 200) The quadratic term in the objective is typically quite small. I want...

I am using vscode C# extension to manage a few csx scripts without `.csproj` My `omnisharp.json` is "script": { "enableScriptNuGetReferences": true, "defaultTargetFramework": "net6.0" } However, by default it doesn't enable...

csx

See in screenshot Syntax highlighting colors are not consistent. (Comparing `A`, `int`, `decltype`) I checked in "Developer: Inspect Editor Token and Scopes", and notice not all types have "semantic token...

bug

I am running Notebook with Julia kernel in VS Code with Julia extension If I print multiple things with time intervals in a cell ```julia println(1) sleep(1) println(2) sleep(1) println(3)...