Auto-scrolling viewer for arxiv.lol live feed inside VS Code
  • JavaScript 100%
Find a file
root c610952682 Initial release: arXiv auto-scroll VS Code extension
- Opens arxiv.lol in a webview panel with auto-scrolling
- Controls: pause/resume, speed up/down, jump to top/bottom
- Keyboard shortcuts: Space, Arrow Up/Down
- Configurable scroll speed and URL via settings
2026-03-11 20:57:32 +00:00
src Initial release: arXiv auto-scroll VS Code extension 2026-03-11 20:57:32 +00:00
.gitignore Initial release: arXiv auto-scroll VS Code extension 2026-03-11 20:57:32 +00:00
package-lock.json Initial release: arXiv auto-scroll VS Code extension 2026-03-11 20:57:32 +00:00
package.json Initial release: arXiv auto-scroll VS Code extension 2026-03-11 20:57:32 +00:00
README.md Initial release: arXiv auto-scroll VS Code extension 2026-03-11 20:57:32 +00:00

arXiv Auto-Scroll — VS Code Extension

Auto-scrolling viewer for arxiv.lol live feed inside VS Code.

VS Code

Installation

From .vsix file

  1. Download the latest .vsix from Releases
  2. Install via terminal:
    code --install-extension arxiv-autoscroll-0.1.0.vsix
    
    Or in VS Code: Ctrl+Shift+P → "Extensions: Install from VSIX..." → select the file.

From source

git clone https://github.com/alexwortega/arxiv-autoscroll-vscode.git
cd arxiv-autoscroll-vscode
npm install
npx @vscode/vsce package --no-dependencies --allow-missing-repository
code --install-extension arxiv-autoscroll-0.1.0.vsix

Usage

  1. Open Command Palette: Ctrl+Shift+P (or Cmd+Shift+P on macOS)
  2. Run "arXiv: Open Auto-Scroll Feed"

Controls

Action Button Keyboard
Pause / Resume ⏸ Pause Space
Speed up + Faster Arrow Up
Slow down Slower Arrow Down
Jump to top ↑ Top
Jump to bottom ↓ Bottom

Settings

Setting Default Description
arxivAutoscroll.scrollSpeed 1 Scroll speed in pixels per frame (0.120)
arxivAutoscroll.url https://arxiv.lol/ URL to load in the viewer

Commands

  • arXiv: Open Auto-Scroll Feed — open the feed panel
  • arXiv: Pause/Resume Scroll — toggle scrolling
  • arXiv: Scroll Faster — increase speed by 0.5px
  • arXiv: Scroll Slower — decrease speed by 0.5px

License

MIT