Skip to main content
The Hiveku code editor is built on Monaco — the same engine that powers VS Code. You get syntax highlighting, autocomplete, and all the editing features you’d expect, right in your browser.

Opening the editor

Click Code Editor from any project dashboard, or click a file in the sidebar to open it directly.

Layout

The editor uses a split-panel layout:
  • Left panel — AI chat for natural language coding
  • Center panel — the code editor with tabs for open files
  • Right panel — live preview of your site
You can resize panels by dragging the dividers, or collapse the chat or preview to focus on code.

Language support

CategoryLanguages
WebHTML, CSS, JavaScript, TypeScript, JSX, TSX, SCSS, LESS, Markdown, MDX
Data / ConfigJSON, YAML, TOML, XML, ENV, SQL
OtherPython, PHP, Ruby, Go, Rust, C, C++, Java, Shell, Dockerfile

Editor features

  • Syntax highlighting for all supported languages
  • Autocomplete with IntelliSense-style suggestions
  • Minimap for quick navigation in long files
  • Word wrap toggle for horizontal scrolling preference
  • Format on paste to auto-indent pasted code
  • Format on type for automatic formatting as you write

Keyboard shortcuts

ShortcutAction
Ctrl+S / Cmd+SSave file
Ctrl+P / Cmd+PQuick file open
Ctrl+Shift+P / Cmd+Shift+PCommand palette
Ctrl+F / Cmd+FFind in file
Ctrl+H / Cmd+HFind and replace
Ctrl+Z / Cmd+ZUndo
Ctrl+Shift+Z / Cmd+Shift+ZRedo
Alt+Up / Option+UpMove line up
Alt+Down / Option+DownMove line down
Ctrl+D / Cmd+DSelect next occurrence

File mention in AI chat

Type @ followed by a filename in the AI chat to reference a specific file. This focuses the AI’s attention on that file when generating responses.
Refactor the layout in @components/header.html to use flexbox