BoostNote-Legacy
BoostNote-Legacy copied to clipboard
This repository is outdated and new Boost Note app is available! We've launched a new Boost Note app which supports real-time collaborative writing. https://github.com/BoostIO/BoostNote-App
**Description:** This PR introduces case-folding support in the Markdown parser to handle case-insensitive matching for headings, links, and anchors. The update modifies `markdown.js` to ensure consistent anchor generation regardless of...
Adds autocomplete functionality using CodeMirror's show-hint addon. Press Ctrl+Space to show word suggestions from the current document. Closes #2567 ## Description This PR implements code autocomplete functionality for the editor...
const nodeIpc = require('node-ipc') const { app, Menu, globalShortcut, ipcMain } = require('electron') const path = require('path') const mainWindow = require('./main-window')
## 🧠 What this PR does This PR adds a code autocomplete dropdown in the Code Editor using CodeMirror’s official `show-hint` addon. ## 🔧 Implementation Details - Installed and imported...