[READ-ONLY] Mirror of https://github.com/improsocial/impro An extensible Bluesky client for web impro.social
6

Configure Feed

Select the types of activity you want to include in your feed.

Intercept enter

Grace Kind (Jun 29, 2026, 2:15 PM -0500) 4b11f013 05094c37

+6 -1
+1 -1
package.json
··· 1 1 { 2 2 "name": "impro", 3 - "version": "0.17.75", 3 + "version": "0.17.76", 4 4 "type": "module", 5 5 "scripts": { 6 6 "start": "rm -rf \"${BUILD_DIR:-build}\" && NODE_ENV=development eleventy --serve",
+5
src/js/components/rich-text-input.js
··· 535 535 } 536 536 537 537 handleKeydown(e) { 538 + if (e.key === "Enter" && this.mentionSuggestions.length === 0) { 539 + e.preventDefault(); 540 + document.execCommand("insertText", false, "\n"); 541 + return; 542 + } 538 543 if (this.mentionSuggestions.length > 0) { 539 544 if (e.key === "ArrowDown") { 540 545 e.preventDefault();