Yuku Takahashi

Results 17 comments of Yuku Takahashi

same problem here. In my case, I patch `ComponentMount` as follows to retry rendering with `prerender: false` when something goes wrong during server rendering: ``` rb # config/initializers/react-rails.rb class React::Rails::ComponentMount...

I too would be very grateful if arm64 release is provided. 👍 [k0kubun/sqldef](https://github.com/k0kubun/sqldef) is also written in Golang and it builds binaries including arm64 for both darwin and linux using...

Thanks for opening the issue. When a user press "escape", 1. [TextareaEditor.prototype.onKeydown](https://github.com/yuku/textcomplete/blob/28668eaaec2ed48f6e20e223c46a6aa5e88a2e36/packages/textcomplete-textarea/src/TextareaEditor.ts#L90) event handler is executed. 2. The editor emits "esc" event by calling `emitEscEvent` at [L98](https://github.com/yuku/textcomplete/blob/28668eaaec2ed48f6e20e223c46a6aa5e88a2e36/packages/textcomplete-textarea/src/TextareaEditor.ts#L98) 3. [Textcomplete.prototype.handleEsc](https://github.com/yuku/textcomplete/blob/28668eaaec2ed48f6e20e223c46a6aa5e88a2e36/packages/textcomplete-core/src/Textcomplete.ts#L96-L101) is...

Nope. Since this repository had become a mono repository and this issue was written for one of the deprecated projects, it was closed without looking at its contents. Seems still...

Thanks for reporting the issue. @aki77 (as the author of #350) Are you experiencing similar problems on your site?

@lsenta Do you want a UI like [typeahead.js](https://twitter.github.io/typeahead.js/examples/)? If yes, the answer is no. Textcomplete doesn't support such UI now.

I understand. When a user inputs, the [`Dropdown.prototype.render`](https://github.com/yuku/textcomplete/blob/28668eaaec2ed48f6e20e223c46a6aa5e88a2e36/packages/textcomplete-core/src/Dropdown.ts#L68-L91) method is called and the associated element's position is updated by calling `setOffset` [here](https://github.com/yuku/textcomplete/blob/28668eaaec2ed48f6e20e223c46a6aa5e88a2e36/packages/textcomplete-core/src/Dropdown.ts#L82-L88). Probably, it can be implemented as follows. I'll...

Really fast! Thanks! 🚀 before ``` $ time go install github.com/kyleconroy/sqlc/cmd/[email protected] real 0m28.474s user 0m55.467s sys 0m10.388s ``` after ``` $ time curl -fsL https://downloads.sqlc.dev/sqlc_1.18.0_linux_arm64.tar.gz | tar -C /bo/bin -xzf...

@agola11 Thanks for the feedback. I pushed two commits: * Add `@deprecated` comment to `ChatVectorDBQAChain` * Add `verbose` option to `ConversationalRetrievalQAChain.fromLLM`