[racket-users] Re: Typing lag with DrRacket on Linux

2018-02-09 Thread Evan Whitmer
I forgot to mention that I have a 4K display, and I think that's important to note here. On Friday, February 9, 2018 at 7:00:18 PM UTC-10, Evan Whitmer wrote: > > I, too, am having typing latency issues in DrRacket in the definitions > window. As Dave noted, the size of the window seems to be

[racket-users] Re: Adding interactive overlays to racket plots

2018-02-09 Thread Evan Whitmer
Looks awesome! On Friday, February 9, 2018 at 4:27:46 PM UTC-10, Alex Harsanyi wrote: > > > > On Saturday, February 10, 2018 at 10:00:29 AM UTC+8, Evan Whitmer wrote: >> >> Do you anticipate this playing well with charts that have multiple Y >> values for a given X value. For example,

[racket-users] Re: Typing lag with DrRacket on Linux

2018-02-09 Thread Evan Whitmer
I, too, am having typing latency issues in DrRacket in the definitions window. As Dave noted, the size of the window seems to be related to the issue, and, in my experience, it's not just an issue with the Definitions window. Both the Interactions window and even the following code snippet

[racket-users] Re: Adding interactive overlays to racket plots

2018-02-09 Thread Alex Harsanyi
On Saturday, February 10, 2018 at 10:00:29 AM UTC+8, Evan Whitmer wrote: > > Do you anticipate this playing well with charts that have multiple Y > values for a given X value. For example, candlestick plotting >

[racket-users] Re: Adding interactive overlays to racket plots

2018-02-09 Thread Evan Whitmer
Do you anticipate this playing well with charts that have multiple Y values for a given X value. For example, candlestick plotting has recently landed in racket/plot. It

[racket-users] Re: Concise way to get completions for Racket code?

2018-02-09 Thread HiPhish
I'm afraid that's not possible. The functionality that gets the completion candidates is written in Racket: #lang racket/base (require nvim/rplugin framework) (define (complete prefix) (define completions (text:get-completions/manuals #f)) (filter (λ (x) (regexp-match

[racket-users] Re: Concise way to get completions for Racket code?

2018-02-09 Thread nocheroot
Will your omni-completion also work in Vim? On Friday, February 9, 2018 at 3:52:30 PM UTC-6, HiPhish wrote: > > Thank you for finding that. I have used your snippet to add > omni-completion to > Neovim now. I need to file down some rough patches before I make it a > plugin, > but it works. Not

[racket-users] Re: Concise way to get completions for Racket code?

2018-02-09 Thread HiPhish
Thank you for finding that. I have used your snippet to add omni-completion to Neovim now. I need to file down some rough patches before I make it a plugin, but it works. Not as useful as having proper semantic completion would have been, it does not include identifiers from the current module

Re: [racket-users] documentation and tests not running on racket pkgs

2018-02-09 Thread Matthew Flatt
The pkg-build service is having trouble, probably related to an OS upgrade. I've kicked it again, and I'll try to figure out what's going wrong. At Fri, 9 Feb 2018 12:15:04 -0500, Ben Greenman wrote: > I'm having a similar problem with the documentation for this package: >

Re: [racket-users] documentation and tests not running on racket pkgs

2018-02-09 Thread Ben Greenman
I'm having a similar problem with the documentation for this package: https://pkgd.racket-lang.org/pkgn/package/gtp-measure On Fri, Feb 9, 2018 at 12:11 PM, wrote: > Hello, > > I uploaded my package 3 days ago https://pkgs.racket-lang.org/package/peg > but the documentation

[racket-users] documentation and tests not running on racket pkgs

2018-02-09 Thread rain1
Hello, I uploaded my package 3 days ago https://pkgs.racket-lang.org/package/peg but the documentation and tests have not been run. I was told it should happen every 24 hours. I am not sure if I created my package slightly wrong or if the build server has a bug. -- You received this